summary refs log tree commit diff
path: root/src/test/ui/issues/issue-13853-2.stderr
blob: 49b946b354e53a8b51ed38c7d073ddac14a38648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0615]: attempted to take value of method `get` on type `std::boxed::Box<(dyn ResponseHook + 'static)>`
  --> $DIR/issue-13853-2.rs:5:43
   |
LL | fn foo(res : Box<dyn ResponseHook>) { res.get }
   |                                           ^^^ method, not a field
   |
help: use parentheses to call the method
   |
LL | fn foo(res : Box<dyn ResponseHook>) { res.get() }
   |                                              ^^

error: aborting due to previous error

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