]> git.lizzy.rs Git - rust.git/blob - src/test/ui/self/point-at-arbitrary-self-type-trait-method.stderr
Account for arbitrary self types in E0599
[rust.git] / src / test / ui / self / point-at-arbitrary-self-type-trait-method.stderr
1 error[E0599]: no method named `foo` found for struct `A` in the current scope
2   --> $DIR/point-at-arbitrary-self-type-trait-method.rs:9:7
3    |
4 LL | trait B { fn foo(self: Box<Self>); }
5    |              ---       --------- the method might not be found because of this arbitrary self type
6    |              |
7    |              the method is available for `std::boxed::Box<A>` here
8 LL | struct A;
9    | --------- method `foo` not found for this
10 ...
11 LL |     A.foo()
12    |       ^^^ method not found in `A`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0599`.