| /* | |
| :name: implicit_port_connection | |
| :description: implicit port connection tests | |
| :should_fail: 0 | |
| :tags: 6.10 | |
| */ | |
| module top(); | |
| wire a = 1; | |
| wire b = 0; | |
| wire d; | |
| test mod(a, b, c); | |
| assign d = c; | |
| endmodule | |
| module test(input a, input b, output c); | |
| assign c = a | b; | |
| endmodule |