about summary refs log tree commit diff
path: root/src/test/ui/assign-to-method.stderr
blob: a08ac192a22820b5ef01d50092aad5a1f850feab (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0615]: attempted to take value of method `speak` on type `Cat`
  --> $DIR/assign-to-method.rs:20:8
   |
LL |   nyan.speak = || println!("meow"); //~ ERROR attempted to take value of method
   |        ^^^^^
   |
   = help: maybe a `()` to call it is missing?

error: aborting due to previous error

For more information about this error, try `rustc --explain E0615`.