Tests: Fix interface syntax error

This commit is contained in:
Wilson Snyder 2024-11-09 17:22:16 -05:00
parent 99e7dbc82b
commit 4a88ddc616
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
%Error-UNSUPPORTED: t/t_mod_interface_array3.v:22:20: Unsupported: Multidimensional instances/interfaces.
22 | a_if iface [2:0][1:0];
22 | a_if iface [2:0][1:0] ();
| ^
... For error description see https://verilator.org/warn/UNSUPPORTED?v=latest
%Error-UNSUPPORTED: t/t_mod_interface_array3.v:24:18: Unsupported: Multidimensional instances/interfaces.

View File

@ -19,7 +19,7 @@ module t;
string str [2:0][1:0];
a_if iface [2:0][1:0];
a_if iface [2:0][1:0] ();
sub i_sub[2:0][1:0] (.s(str));