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