]> git.lizzy.rs Git - rust.git/blob - src/test/ui/namespace/namespaced-enum-glob-import-no-impls.stderr
Rollup merge of #98848 - flip1995:clippy-book, r=jyn514
[rust.git] / src / test / ui / namespace / namespaced-enum-glob-import-no-impls.stderr
1 error[E0425]: cannot find function `foo` in this scope
2   --> $DIR/namespaced-enum-glob-import-no-impls.rs:21:5
3    |
4 LL |     foo();
5    |     ^^^ not found in this scope
6
7 error[E0425]: cannot find function `foo` in module `m`
8   --> $DIR/namespaced-enum-glob-import-no-impls.rs:22:8
9    |
10 LL |     m::foo();
11    |        ^^^ not found in `m`
12
13 error[E0425]: cannot find function `bar` in this scope
14   --> $DIR/namespaced-enum-glob-import-no-impls.rs:23:5
15    |
16 LL |     bar();
17    |     ^^^ not found in this scope
18
19 error[E0425]: cannot find function `bar` in module `m`
20   --> $DIR/namespaced-enum-glob-import-no-impls.rs:24:8
21    |
22 LL |     m::bar();
23    |        ^^^ not found in `m`
24
25 error: aborting due to 4 previous errors
26
27 For more information about this error, try `rustc --explain E0425`.