sv2v/test/error/end_label_block_wrong.sv

7 lines
140 B
Systemverilog

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