9 lines
181 B
Coq
9 lines
181 B
Coq
|
|
// Check that implicit type in a parameter port list without `parameter`
|
||
|
|
// generates an error.
|
||
|
|
|
||
|
|
module test #([7:0] A = 1);
|
||
|
|
initial begin
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
endmodule
|