Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-5
/
5.10-structure-arrays.sv
blob: dba359dde7064253bb0f1f5c918238899adb0ee1 [
file
] [
log
] [
blame
]
/*
:name: structure-arrays
:description: Structure array assignment tests
:should_fail: 0
:tags: 5.10
*/
module
top
();
typedef
struct
{
int
a
;
int
b
;
}
ms_t
;
ms_t
ms
[
1
:
0
]
=
'{'
{
0
,
0
},
'{1, 1}};
endmodule