blob: 77398cb9ae9706e36367b6f022afb84370c2d706 [file] [log] [blame]
/*
:name: variable_mixed_assignments
:description: Variable mixed assignments tests
:should_fail: 1
:tags: 6.5
*/
module top();
wire clk = 0;
int v;
assign v = 12;
always @(posedge clk) v <= ~v;
endmodule