2020-01-08 10:05:31 -06:00
|
|
|
error[E0599]: no method named `foo` found for reference `&dyn Foo` in the current scope
|
2019-05-28 13:46:13 -05:00
|
|
|
--> $DIR/issue-5153.rs:10:27
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | (&5isize as &dyn Foo).foo();
|
2019-09-06 14:00:07 -05:00
|
|
|
| ^^^ method not found in `&dyn Foo`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
|
|
= note: the following trait defines an item `foo`, perhaps you need to implement it:
|
|
|
|
candidate #1: `Foo`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|