mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 17:54:22 +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
142 B
Systemverilog
5 lines
142 B
Systemverilog
// pattern: charge_strength_non_trireg\.sv:3:5: Parse error: only trireg can have a charge strength
|
|
module top;
|
|
wire (small) x;
|
|
endmodule
|