mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 09:44:27 +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
5 lines
115 B
Systemverilog
5 lines
115 B
Systemverilog
// pattern: decl_const_wire\.sv:3:5: Parse error: wire cannot be const
|
|
module top;
|
|
const wire x = 1;
|
|
endmodule
|