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