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