iverilog/ivtest/ivltests/module_nonansi_fail11.v

10 lines
226 B
Verilog

// Check that declaring multiple non-ANSI module ports with an implicit type and
// the same name is an error. Even if the signal was previously declared as a
// net.
module test(x);
wire x;
input x;
input x;
endmodule