rust/src/test/ui/bad/bad-module.stderr

16 lines
537 B
Plaintext
Raw Normal View History

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());
| ^^^^^ use of undeclared type or module `thing`
2018-08-08 12:28: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();
| ^^^ 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`.