]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/mod_file_not_exist_windows.rs
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / mod_file_not_exist_windows.rs
1 // only-windows
2
3 mod not_a_real_file; //~ ERROR file not found for module `not_a_real_file`
4 //~^ HELP name the file either not_a_real_file.rs or not_a_real_file\mod.rs inside the directory
5
6 fn main() {
7     assert_eq!(mod_file_aux::bar(), 10);
8 }