blob: a83df7faedf8e6ad755e2eb7ec1b167bc92a7777 [file] [log] [blame] [edit]
/***********************************************************************
Duplicate input declaration test case
Duplicate port declarations should generate an error
***********************************************************************/
module port_test4 (
a, // Input
b, // Output
);
input a;
input a;
output b;
assign b=a;
endmodule