sv2v/test/error/end_label_block_only.sv

7 lines
120 B
Systemverilog

// pattern: block has only end label "no"
module top;
initial begin
$display("Hi!");
end : no
endmodule