Files
sv2v/test/error/end_label_block_only.sv

7 lines
120 B
Systemverilog
Raw Permalink Normal View History

2021-06-15 17:47:32 -04:00
// pattern: block has only end label "no"
module top;
initial begin
$display("Hi!");
end : no
endmodule