]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0067.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / error-codes / E0067.stderr
1 error[E0368]: binary assignment operation `+=` cannot be applied to type `std::collections::LinkedList<_>`
2   --> $DIR/E0067.rs:4:5
3    |
4 LL |     LinkedList::new() += 1; //~ ERROR E0368
5    |     -----------------^^^^^
6    |     |
7    |     cannot use `+=` on type `std::collections::LinkedList<_>`
8    |
9    = note: an implementation of `std::ops::AddAssign` might be missing for `std::collections::LinkedList<_>`
10
11 error[E0067]: invalid left-hand side expression
12   --> $DIR/E0067.rs:4:5
13    |
14 LL |     LinkedList::new() += 1; //~ ERROR E0368
15    |     ^^^^^^^^^^^^^^^^^ invalid expression for left-hand side
16
17 error: aborting due to 2 previous errors
18
19 Some errors occurred: E0067, E0368.
20 For more information about an error, try `rustc --explain E0067`.