summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs/method-chain-expression-failure.stderr
blob: a0bcef6b0310eafdcf896fe98d6dd83aee88e0dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0599]: no method named `foo` found for struct `E` in the current scope
  --> $DIR/method-chain-expression-failure.rs:29:23
   |
LL | struct E;
   | -------- method `foo` not found for this struct
...
LL |     A.b().c().d().e().foo();
   |     -     ---         ^^^ method not found in `E`
   |     |     |
   |     |     method `foo` is available on `&C`
   |     method `foo` is available on `&A`

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0599`.