]> git.proxmox.com Git - rustc.git/blame - src/test/ui/self/point-at-arbitrary-self-type-trait-method.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / self / point-at-arbitrary-self-type-trait-method.stderr
CommitLineData
dfeec247 1error[E0599]: no method named `foo` found for struct `A` in the current scope
e1599b0c
XL
2 --> $DIR/point-at-arbitrary-self-type-trait-method.rs:9:7
3 |
4LL | trait B { fn foo(self: Box<Self>); }
74b04a01
XL
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
e1599b0c
XL
8LL | struct A;
9 | --------- method `foo` not found for this
10...
11LL | A.foo()
12 | ^^^ method not found in `A`
e1599b0c
XL
13
14error: aborting due to previous error
15
16For more information about this error, try `rustc --explain E0599`.