2013-07-19 19:11:30 -07:00
|
|
|
mod not_a_real_file; //~ ERROR file not found for module `not_a_real_file`
|
2020-03-17 04:39:22 +01:00
|
|
|
//~^ HELP to create the module `not_a_real_file`, create file
|
2012-11-18 14:14:40 -08:00
|
|
|
|
|
|
|
|
fn main() {
|
2013-05-18 22:02:45 -04: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 11:47:00 -08:00
|
|
|
}
|