2021-10-07 21:06:45 -06:00
|
|
|
// pattern: instance m of Module has unconnected interface ports: i
|
|
|
|
|
// location: interface_unbound_modport.sv:11:5
|
2020-12-30 17:17:27 -07:00
|
|
|
interface Interface;
|
|
|
|
|
logic x;
|
|
|
|
|
endinterface
|
|
|
|
|
module Module(i);
|
|
|
|
|
Interface i;
|
|
|
|
|
endmodule
|
|
|
|
|
module top;
|
|
|
|
|
Interface i();
|
|
|
|
|
Module m();
|
|
|
|
|
endmodule
|