2018-11-13 23:52:26 +00:00
|
|
|
error[E0433]: failed to resolve: use of undeclared type or module `thing`
|
2018-08-08 12:28:26 +00:00
|
|
|
--> $DIR/bad-module.rs:12:15
|
|
|
|
|
|
|
|
|
LL | let foo = thing::len(Vec::new());
|
2018-11-13 23:52:26 +00:00
|
|
|
| ^^^^^ use of undeclared type or module `thing`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2018-11-13 23:52:26 +00:00
|
|
|
error[E0433]: failed to resolve: use of undeclared type or module `foo`
|
2018-08-08 12:28:26 +00:00
|
|
|
--> $DIR/bad-module.rs:15:15
|
|
|
|
|
|
|
|
|
LL | let foo = foo::bar::baz();
|
2018-11-13 23:52:26 +00:00
|
|
|
| ^^^ use of undeclared type or module `foo`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|