mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 01:34:16 +02:00
- disallow using end label alone on blocks - improved parse error for mismatches - add label checking for non-block constructs - allow generate block to have label before begin
6 lines
109 B
Systemverilog
6 lines
109 B
Systemverilog
// pattern: element "yes" has mismatched end label "no"
|
|
module top;
|
|
task yes;
|
|
endtask : no
|
|
endmodule
|