9 lines
144 B
Coq
9 lines
144 B
Coq
|
|
// Check that declarations for unpacked arrays of queues are supported.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
// Unpacked array of queues
|
||
|
|
int q[$][10];
|
||
|
|
|
||
|
|
endmodule
|