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