11 lines
151 B
Coq
11 lines
151 B
Coq
|
|
// Check that declaring a net of a queue type results in an error
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
wire x[$];
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
endmodule
|