sv2v/test/basic/named_block.v

13 lines
228 B
Verilog
Raw Normal View History

module top;
initial begin : block_name1
integer i;
i = 1;
$display("%08d", i);
end
initial begin : block_name2
integer i;
i = 1;
$display("%08d", i);
end
endmodule