]> git.lizzy.rs Git - rust.git/blob - tests/ui/associated-types/issue-36499.stderr
Rollup merge of #106714 - Ezrashaw:remove-e0490, r=davidtwco
[rust.git] / tests / 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