mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 17:54:22 +02:00
7 lines
146 B
Systemverilog
7 lines
146 B
Systemverilog
// pattern: cannot convert expression to LHS
|
|
// location: asgn_expr_non_lhs.sv:5:20
|
|
module top;
|
|
integer x;
|
|
initial x = (1 = x);
|
|
endmodule
|