]> git.proxmox.com Git - rustc.git/blob - src/test/ui/associated-types/issue-36499.stderr
New upstream version 1.57.0+dfsg1
[rustc.git] / src / test / ui / associated-types / issue-36499.stderr
1 error: leading `+` is not supported
2 --> $DIR/issue-36499.rs:4:9
3 |
4 LL | 2 + +2;
5 | ^ unexpected `+`
6 |
7 help: try removing the `+`
8 |
9 LL - 2 + +2;
10 LL + 2 + 2;
11 |
12
13 error: aborting due to previous error
14