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
+7
View File
@@ -33,6 +33,13 @@ module ModuleN(intf);
Interface intf;
`SHADOW
initial #1 $display("ModuleN got %0d", intf.x);
typedef struct packed {
logic a, b;
} Struct;
Struct [1:0] structs;
assign structs[1].a = structs[0].b;
assign structs[0].a = structs[1].b;
endmodule
module top;