summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-13853-2.stderr
blob: 92068df6c057008d6e82f93e170eca612186581a (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 `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`.