sv2v/test/basic/genblk_implicit.sv

8 lines
137 B
Systemverilog

module top;
if (1) begin
// should not be visible in a top-level VCD
wire x;
assign x = 1;
end
endmodule