asgn_expr_non_lhs.sv 146 Bytes
Newer Older
1 2 3 4 5 6
// pattern: cannot convert expression to LHS
// location: asgn_expr_non_lhs.sv:5:20
module top;
    integer x;
    initial x = (1 = x);
endmodule