summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-36499.stderr
blob: 80e42b61d2057ea1a045d6ec6d41176d9bcea655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 previous error