interface_mismatch_6.sv 254 Bytes
Newer Older
1
// pattern: could not find modport intf1\.ModportC
2
// location: interface_mismatch_6.sv:9:5
3 4 5 6 7 8 9 10
`include "interface_mismatch.svh"
module Module(intf);
    Interface1.ModportC intf;
endmodule
module top;
    Interface1 intf1();
    Module m(intf1);
endmodule