Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Virtual interfaces support #17

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
Fix negative test
  • Loading branch information
kozdra committed Oct 13, 2022
commit 562541d5510075e42d56cd033e5b26d00f73042a
4 changes: 2 additions & 2 deletions test_regress/t/t_interface_virtual_bad.out
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
: ... In instance t
35 | data = p8.phy;
| ^~~
%Error: t/t_interface_virtual_bad.v:36:14: Operator ASSIGN expected non-interface on Assign RHS but 'v8_phy__Viftop' is an interface.
%Error: t/t_interface_virtual_bad.v:36:14: Operator ASSIGN expected non-interface on Assign RHS but 'v8_phy' is an interface.
: ... In instance t
36 | data = v8_phy;
| ^~~~~~
%Error: t/t_interface_virtual_bad.v:37:14: Operator ASSIGN expected non-interface on Assign RHS but 'v8__Viftop' is an interface.
%Error: t/t_interface_virtual_bad.v:37:14: Operator ASSIGN expected non-interface on Assign RHS but 'v8' is an interface.
: ... In instance t
37 | data = v8;
| ^~
Expand Down