Files
rust/tests/ui/modules_and_files_visibility/mod_file_disambig.rs

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

7 lines
239 B
Rust
Raw Normal View History

mod mod_file_disambig_aux; //~ ERROR file for module `mod_file_disambig_aux` found at both
fn main() {
assert_eq!(mod_file_aux::bar(), 10);
//~^ ERROR failed to resolve: use of unresolved module or unlinked crate `mod_file_aux`
}