summary refs log tree commit diff
path: root/src/test/ui/parser/mod_file_not_exist.rs
blob: e662c707a38b9037dd5dedba3066eaf57761b0d1 (plain)
1
2
3
4
5
6
7
8
// ignore-windows

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);
}