mirror of https://github.com/zachjs/sv2v.git
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
|