]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/mod_file_not_exist_windows.rs
4b7d7a02bbe78cc468d605715b09cdda7c16f2bf
[rustc.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 to create the module `not_a_real_file`, create file
5
6 fn main() {
7 assert_eq!(mod_file_aux::bar(), 10);
8 //~^ ERROR failed to resolve: use of undeclared type or module `mod_file_aux`
9 }