]> git.proxmox.com Git - rustc.git/blame - src/test/ui/modules_and_files_visibility/mod_file_disambig.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / modules_and_files_visibility / mod_file_disambig.stderr
CommitLineData
17df50a5 1error[E0761]: file for module `mod_file_disambig_aux` found at both "$DIR/mod_file_disambig_aux.rs" and "$DIR/mod_file_disambig_aux/mod.rs"
ba9703b0 2 --> $DIR/mod_file_disambig.rs:1:1
b7449926 3 |
532ac7d7 4LL | mod mod_file_disambig_aux;
ba9703b0 5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^
b7449926
XL
6 |
7 = help: delete or rename one of them to remove the ambiguity
8
1b1a35ee 9error[E0433]: failed to resolve: use of undeclared crate or module `mod_file_aux`
ba9703b0
XL
10 --> $DIR/mod_file_disambig.rs:4: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
b7449926 16
f035d41b 17Some errors have detailed explanations: E0433, E0761.
ba9703b0 18For more information about an error, try `rustc --explain E0433`.