sv2v/test/error/interface_unbound_modport.sv

13 lines
151 B
Systemverilog

interface Interface;
logic x;
endinterface
module Module(i);
Interface i;
endmodule
module top;
Interface i();
Module m();
endmodule