// 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 // integer typed net. module test(x); wire integer x; input x; input x; endmodule