]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/bad-module.stderr
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / ui / resolve / bad-module.stderr
1 error[E0433]: failed to resolve: use of undeclared crate or module `foo`
2   --> $DIR/bad-module.rs:5:15
3    |
4 LL |     let foo = foo::bar::baz();
5    |               ^^^ use of undeclared crate or module `foo`
6
7 error[E0433]: failed to resolve: use of undeclared crate or module `thing`
8   --> $DIR/bad-module.rs:2:15
9    |
10 LL |     let foo = thing::len(Vec::new());
11    |               ^^^^^ use of undeclared crate or module `thing`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0433`.