diff options
Diffstat (limited to 'tests/ui/issues/issue-5153.stderr')
-rw-r--r-- | tests/ui/issues/issue-5153.stderr | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-5153.stderr b/tests/ui/issues/issue-5153.stderr new file mode 100644 index 000000000..93aaf4b9d --- /dev/null +++ b/tests/ui/issues/issue-5153.stderr @@ -0,0 +1,12 @@ +error[E0599]: no method named `foo` found for reference `&dyn Foo` in the current scope + --> $DIR/issue-5153.rs:10:27 + | +LL | fn foo(self: Box<Self>); + | --------- the method might not be found because of this arbitrary self type +... +LL | (&5isize as &dyn Foo).foo(); + | ^^^ method not found in `&dyn Foo` + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0599`. |