Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.4.13--set_member.sv
blob: e6d921ac7edd06873f11bca668c0d07212df483f [
file
] [
log
] [
blame
]
/*
:name: set_member
:description: inside operator test
:should_fail: 0
:tags: 11.4.13
*/
module
top
();
int
a
;
int
b
=
12
;
int
c
=
5
;
int
d
=
7
;
initial
begin
a
=
b inside
{
c
,
d
};
end
endmodule