mirror of https://github.com/zachjs/sv2v.git
7 lines
120 B
Systemverilog
7 lines
120 B
Systemverilog
|
|
// pattern: block has only end label "no"
|
||
|
|
module top;
|
||
|
|
initial begin
|
||
|
|
$display("Hi!");
|
||
|
|
end : no
|
||
|
|
endmodule
|