sv2v/test/error/lhs_expr.sv

6 lines
117 B
Systemverilog
Raw Normal View History

// pattern: cannot convert expression to LHS
2020-12-04 03:02:33 +01:00
module top;
logic x;
assign {<< {x, 2'b00}} = 3'b101;
endmodule