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