mirror of https://github.com/zachjs/sv2v.git
10 lines
276 B
Systemverilog
10 lines
276 B
Systemverilog
|
|
// pattern: could not resolve modport binding intf1\.ModportC for port intf of type Interface1\.ModportB
|
||
|
|
`include "interface_mismatch.svh"
|
||
|
|
module Module(intf);
|
||
|
|
Interface1.ModportB intf;
|
||
|
|
endmodule
|
||
|
|
module top;
|
||
|
|
Interface1 intf1();
|
||
|
|
Module m(intf1.ModportC);
|
||
|
|
endmodule
|