Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-7
/
arrays
/
associative
/
other.sv
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