Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
5116133e9d8aa43e4097998303280bdb37ca7200
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.3.6--assign_in_expr.sv
blob: 1c1f25d26135e24908360c0c33e82c7cca40aaa4 [
file
] [
log
] [
blame
]
/*
:name: assign_in_expr
:description: assignment in expression test
:should_fail: 0
:tags: 11.3.6
*/
module
top
();
int
a
;
int
b
;
int
c
;
initial
begin
a
=
(
b
=
(
c
=
5
));
end
endmodule