mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
11 lines
254 B
Systemverilog
11 lines
254 B
Systemverilog
// pattern: could not find modport intf1\.ModportC
|
|
// location: interface_mismatch_6.sv:9:5
|
|
`include "interface_mismatch.svh"
|
|
module Module(intf);
|
|
Interface1.ModportC intf;
|
|
endmodule
|
|
module top;
|
|
Interface1 intf1();
|
|
Module m(intf1);
|
|
endmodule
|