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