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,8 @@
interface Interface;
parameter T = 0;
logic [T-1:0] x;
endinterface
module top;
Interface #(logic) intf();
endmodule