rust/src/test/ui/invalid-module-declaration/invalid-module-declaration.stderr

12 lines
349 B
Plaintext
Raw Normal View History

2017-11-27 20:14:24 -06:00
error[E0583]: file not found for module `baz`
2017-04-24 09:26:04 -05:00
--> $DIR/auxiliary/foo/bar.rs:11:9
|
2018-02-22 18:42:32 -06:00
LL | pub mod baz;
2017-04-24 09:26:04 -05:00
| ^^^
|
2017-11-27 20:14:24 -06:00
= help: name the file either bar/baz.rs or bar/baz/mod.rs inside the directory "$DIR/auxiliary/foo"
2017-04-24 09:26:04 -05:00
error: aborting due to previous error
2017-04-24 09:26:04 -05:00
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0583"