rust/src/test/ui/assignment-operator-unimplemented.stderr

14 lines
407 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0368]: binary assignment operation `+=` cannot be applied to type `Foo`
2018-12-25 09:56:47 -06:00
--> $DIR/assignment-operator-unimplemented.rs:6:3
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | a += *b;
2018-08-08 07:28:26 -05:00
| -^^^^^^
| |
| cannot use `+=` on type `Foo`
|
= note: an implementation of `std::ops::AddAssign` might be missing for `Foo`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0368`.