9 lines
140 B
Coq
9 lines
140 B
Coq
|
|
// Check that declarations for dynamic arrays of queues are supported.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
// Dynamic array of queues
|
||
|
|
int q[$][];
|
||
|
|
|
||
|
|
endmodule
|