]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/issue-36499.stderr
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[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