iverilog/ivtest/ivltests/named_begin.v

6 lines
96 B
Verilog

module top;
initial begin : named_begin
$display("PASSED");
end : named_begin
endmodule