2017-03-17 22:11:27 +00:00
|
|
|
//@ ignore-windows
|
2015-02-09 19:01:45 +00:00
|
|
|
|
2013-07-20 02:11:30 +00:00
|
|
|
mod not_a_real_file; //~ ERROR file not found for module `not_a_real_file`
|
2020-03-17 03:39:22 +00:00
|
|
|
//~^ HELP to create the module `not_a_real_file`, create file
|
2012-11-18 22:14:40 +00:00
|
|
|
|
|
|
|
fn main() {
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(mod_file_aux::bar(), 10);
|
2024-11-18 03:42:16 +00:00
|
|
|
//~^ ERROR failed to resolve: use of unresolved module or unlinked crate `mod_file_aux`
|
|
|
|
//~| HELP you might be missing a crate named `mod_file_aux`
|
2013-02-14 19:47:00 +00:00
|
|
|
}
|