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