blob: dd91bac815861343cf52f14774bd507ffb7e1303 [file] [log] [blame]
error: leading `+` is not supported
--> $DIR/issue-36499.rs:4:9
|
LL | 2 + +2;
| ^ unexpected `+`
|
help: try removing the `+`
|
LL - 2 + +2;
LL + 2 + 2;
|
error: aborting due to 1 previous error