Files
sv2v/test/error/decl_signed_implicit.sv
Zachary Snow 6381c3e050 minor type cleanup and fixes
- 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
2021-07-06 12:12:59 -04:00

5 lines
128 B
Systemverilog

// pattern: decl_signed_implicit\.sv:3:5: Parse error: declaration missing type information
module top;
signed x;
endmodule