summary refs log tree commit diff
path: root/src/test/ui/assignment-operator-unimplemented.stderr
blob: 983d698c63ebe9f97f54d0d053d37ccbb221e1b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0368]: binary assignment operation `+=` cannot be applied to type `Foo`
  --> $DIR/assignment-operator-unimplemented.rs:16:3
   |
LL |   a += *b; //~ Error: binary assignment operation `+=` cannot be applied to type `Foo`
   |   -^^^^^^
   |   |
   |   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`.