lhs_expr.sv 117 Bytes
Newer Older
1
// pattern: cannot convert expression to LHS
2 3 4 5
module top;
    logic x;
    assign {<< {x, 2'b00}} = 3'b101;
endmodule