blob: c0a97f8dc6ce73940658f3d52dcab33569d3e2eb [file] [log] [blame]
/*
: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