interface_mismatch_5.sv 276 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
// pattern: could not resolve modport binding intf1\.ModportC for port intf of type Interface1\.ModportC
`include "interface_mismatch.svh"
module Module(intf);
    Interface1.ModportC intf;
endmodule
module top;
    Interface1 intf1();
    Module m(intf1.ModportC);
endmodule