9 lines
191 B
Coq
9 lines
191 B
Coq
|
|
// Check that declaring both a net and a variable for a signal that was
|
||
|
|
// previously declared as a non-ANSI module port is an error.
|
||
|
|
|
||
|
|
module test(x);
|
||
|
|
input x;
|
||
|
|
wire x;
|
||
|
|
reg x;
|
||
|
|
endmodule
|