]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/mod_file_not_exist.stderr
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / parser / mod_file_not_exist.stderr
CommitLineData
0bf4aa26 1error[E0583]: file not found for module `not_a_real_file`
ba9703b0 2 --> $DIR/mod_file_not_exist.rs:3:1
0bf4aa26 3 |
532ac7d7 4LL | mod not_a_real_file;
ba9703b0 5 | ^^^^^^^^^^^^^^^^^^^^
0bf4aa26 6 |
17df50a5 7 = help: to create the module `not_a_real_file`, create file "$DIR/not_a_real_file.rs" or "$DIR/not_a_real_file/mod.rs"
0bf4aa26 8
1b1a35ee 9error[E0433]: failed to resolve: use of undeclared crate or module `mod_file_aux`
ba9703b0
XL
10 --> $DIR/mod_file_not_exist.rs:7:16
11 |
12LL | assert_eq!(mod_file_aux::bar(), 10);
1b1a35ee 13 | ^^^^^^^^^^^^ use of undeclared crate or module `mod_file_aux`
ba9703b0
XL
14
15error: aborting due to 2 previous errors
0bf4aa26 16
ba9703b0
XL
17Some errors have detailed explanations: E0433, E0583.
18For more information about an error, try `rustc --explain E0433`.