blob: 174bd6713b28045d410b6f86ddff5158d9fad06a [file] [log] [blame]
/*
:name: associative-arrays-other-types
:description: Test associative arrays support
:should_fail: 0
:tags: 7.8.5 7.8
*/
module top ();
typedef struct {
byte B;
int I[*];
} Unpkt;
int arr [ Unpkt ];
endmodule