Files
sv2v/test/warning/module.sv
Zachary Snow c656cbb977 fix package and interface warnings in verbose mode
- warnings were skipped because verbose about was technically not empty
- add test suite for these warnings in both modes
2021-02-03 09:57:07 -05:00

5 lines
79 B
Systemverilog

module Module;
Interface intf();
assign intf.x = Package::X;
endmodule