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