11 lines
175 B
Coq
11 lines
175 B
Coq
|
|
// Check that using the var keyword for module non-ANSI inout ports results in an error
|
||
|
|
|
||
|
|
module test;
|
||
|
|
inout var x;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|