]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/issue-36499.stderr
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.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