rust/tests/ui/issues/issue-5153.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
474 B
Plaintext
Raw Normal View History

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