2020-08-27 07:27:14 -05:00
|
|
|
error[E0433]: failed to resolve: use of undeclared crate or module `foo`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad-module.rs:5:15
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let foo = foo::bar::baz();
|
2020-08-27 07:27:14 -05:00
|
|
|
| ^^^ use of undeclared crate or module `foo`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-09-18 02:35:21 -05:00
|
|
|
error[E0433]: failed to resolve: use of undeclared crate or module `thing`
|
|
|
|
--> $DIR/bad-module.rs:2:15
|
|
|
|
|
|
|
|
|
LL | let foo = thing::len(Vec::new());
|
|
|
|
| ^^^^^ use of undeclared crate or module `thing`
|
|
|
|
|
2018-08-08 07:28:26 -05:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|