rust/src/test/ui/parser/mod_file_not_exist.rs
2018-12-25 21:08:33 -07:00

10 lines
279 B
Rust

// ignore-windows
// compile-flags: -Z parse-only
mod not_a_real_file; //~ ERROR file not found for module `not_a_real_file`
//~^ HELP name the file either not_a_real_file.rs or not_a_real_file/mod.rs inside the directory
fn main() {
assert_eq!(mod_file_aux::bar(), 10);
}