iverilog/ivtest/ivltests/sv_darray_nest3.v

9 lines
159 B
Verilog

// Check that declarations for dynamic arrays of unpacked arrays are supported.
module test;
// Dynamic array of unpacked arrays
int q[10][];
endmodule