]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-5153.stderr
Rollup merge of #100861 - RalfJung:const-ice, r=oli-obk
[rust.git] / src / test / ui / issues / issue-5153.stderr
1 error[E0599]: no method named `foo` found for reference `&dyn Foo` in the current scope
2   --> $DIR/issue-5153.rs:10:27
3    |
4 LL |     fn foo(self: Box<Self>);
5    |                  --------- the method might not be found because of this arbitrary self type
6 ...
7 LL |     (&5isize as &dyn Foo).foo();
8    |                           ^^^ method not found in `&dyn Foo`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0599`.