mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 01:34:16 +02:00
- general refactoring in decl parsing - restrict charge strength to trireg - require const vars to be initialized - forbid const net declarations - disallow run-on declarations in packages and classes
7 lines
194 B
Systemverilog
7 lines
194 B
Systemverilog
// pattern: for_loop_decl_no_init\.sv:4:23: Parse error: for loop declaration is missing initialization
|
|
module top;
|
|
initial
|
|
for (integer x; x < 3; x = x + 1)
|
|
;
|
|
endmodule
|