mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
- remove outdated flexible partial type eq and show instances - properly disallow incomplete declarations - disallow var after net type - remove unused edge case in InterfaceT representation
5 lines
117 B
Systemverilog
5 lines
117 B
Systemverilog
// pattern: decl_wire_var\.sv:3:10: Parse error: unexpected var after net type
|
|
module top;
|
|
wire var x;
|
|
endmodule
|