Files
iverilog/ivtest/ivltests/sv_queue_nest4.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
144 B
Verilog

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