2020-01-08 08:05:31 -08:00
|
|
|
error[E0599]: no method named `foo` found for reference `&dyn Foo` in the current scope
|
2019-05-28 14:46:13 -04:00
|
|
|
--> $DIR/issue-5153.rs:10:27
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2020-02-19 15:57:21 -08:00
|
|
|
LL | fn foo(self: Box<Self>);
|
|
|
|
| --------- the method might not be found because of this arbitrary self type
|
2020-02-18 01:35:18 -08:00
|
|
|
...
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | (&5isize as &dyn Foo).foo();
|
2019-09-06 12:00:07 -07:00
|
|
|
| ^^^ method not found in `&dyn Foo`
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|