mirror of https://github.com/zachjs/sv2v.git
7 lines
130 B
Systemverilog
7 lines
130 B
Systemverilog
|
|
// pattern: element "yes" has mismatched end label "no"
|
||
|
|
module top;
|
||
|
|
if (1) begin : yes
|
||
|
|
wire x;
|
||
|
|
end : no
|
||
|
|
endmodule
|