blob: aebf0faae2dcb4264135f08c7bfd9e74492590de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: leading `+` is not supported
--> $DIR/issue-36499.rs:2:9
|
LL | 2 + +2;
| ^ unexpected `+`
|
help: try removing the `+`
|
LL - 2 + +2;
LL + 2 + 2;
|
error: aborting due to 1 previous error
|