mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-29 01:03:29 +02:00
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]>
9 lines
159 B
Verilog
9 lines
159 B
Verilog
// Check that declarations for unpacked arrays of dynamic arrays are supported.
|
|
|
|
module test;
|
|
|
|
// Unpacked array of dynamic arrays
|
|
int q[][10];
|
|
|
|
endmodule
|