mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 01:34:16 +02:00
6 lines
129 B
Systemverilog
6 lines
129 B
Systemverilog
// pattern: cannot convert expression to LHS
|
|
module top;
|
|
logic x, y, z;
|
|
assign {<< {x, '{y:y, z:z}}} = 3'b101;
|
|
endmodule
|