]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/fn-to-method-deeply-nested.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / fn-to-method-deeply-nested.stderr
1 error[E0425]: cannot find value `z` in this scope
2   --> $DIR/fn-to-method-deeply-nested.rs:8:9
3    |
4 LL |         z????????????????????????????????????????????????????????????????????????????????????????
5    |         ^ not found in this scope
6
7 error[E0425]: cannot find function `e` in this scope
8   --> $DIR/fn-to-method-deeply-nested.rs:2:13
9    |
10 LL |     a(b(c(d(e(
11    |             ^ not found in this scope
12
13 error[E0425]: cannot find function `d` in this scope
14   --> $DIR/fn-to-method-deeply-nested.rs:2:11
15    |
16 LL |     a(b(c(d(e(
17    |           ^ not found in this scope
18
19 error[E0425]: cannot find function `c` in this scope
20   --> $DIR/fn-to-method-deeply-nested.rs:2:9
21    |
22 LL |     a(b(c(d(e(
23    |         ^ not found in this scope
24
25 error[E0425]: cannot find function `b` in this scope
26   --> $DIR/fn-to-method-deeply-nested.rs:2:7
27    |
28 LL |     a(b(c(d(e(
29    |       ^ not found in this scope
30
31 error[E0425]: cannot find function `a` in this scope
32   --> $DIR/fn-to-method-deeply-nested.rs:2:5
33    |
34 LL |     a(b(c(d(e(
35    |     ^ not found in this scope
36
37 error: aborting due to 6 previous errors
38
39 For more information about this error, try `rustc --explain E0425`.