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