os-rust/tests/ui/error-codes/E0583.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
558 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0583]: file not found for module `module_that_doesnt_exist`
2020-03-09 11:16:00 +01:00
--> $DIR/E0583.rs:1:1
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | mod module_that_doesnt_exist;
2020-03-09 11:16:00 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 14:28:26 +02:00
|
= help: to create the module `module_that_doesnt_exist`, create file "$DIR/module_that_doesnt_exist.rs" or "$DIR/module_that_doesnt_exist/mod.rs"
= note: if there is a `mod module_that_doesnt_exist` elsewhere in the crate already, import it with `use crate::...` instead
2018-08-08 14:28:26 +02:00
error: aborting due to 1 previous error
2018-08-08 14:28:26 +02:00
For more information about this error, try `rustc --explain E0583`.