Files
iverilog/ivtest/ivltests/sv_darray_nest3.v
T
Lars-Peter Clausen 818dfa55f3 Add regression tests for nested dynamic arrays and queues
SystemVerilog allows to declare signals of nested unpacked types. E.g. a
queue of dynamic arrays.

This is currently not supported by Icarus. Add regression test nevertheless
to check that this is reported as a non-supported construct and does not
result in random crashes.

Signed-off-by: Lars-Peter Clausen <[email protected]>
2022-04-18 09:58:02 +02:00

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