blob: 82c93ca973d1608577ec131f20888f2d6027d3f9 [file] [log] [blame] [edit]
error[E0433]: cannot find module or crate `foo` in this scope
--> $DIR/bad-module.rs:5:15
|
LL | let foo = foo::bar::baz();
| ^^^ use of unresolved module or unlinked crate `foo`
|
= help: you might be missing a crate named `foo`
error[E0433]: cannot find module or crate `thing` in this scope
--> $DIR/bad-module.rs:2:15
|
LL | let foo = thing::len(Vec::new());
| ^^^^^ use of unresolved module or unlinked crate `thing`
|
= help: you might be missing a crate named `thing`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0433`.