additional interface conversion test coverage

This commit is contained in:
Zachary Snow
2020-12-11 12:41:20 -07:00
parent c5b066d5eb
commit 2311d3e2d6
17 changed files with 169 additions and 17 deletions
@@ -0,0 +1,9 @@
interface Interface(a, b);
input a;
logic b;
endinterface
module top;
logic a, b;
Interface intf(a, b);
endmodule