Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
generated
/
assignment_op
/
11.4.1--mul_assignment.sv
blob: 1edc858080c754ffc5a09f1d0b47f993979f188e [
file
] [
log
] [
blame
]
/*
:name: mul_assignment
:description: *= assignment test
:should_fail: 0
:tags: 11.4.1
*/
module
top
();
int
a
=
12
;
int
b
=
5
;
initial
begin
a
*=
b
;
end
endmodule