mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-20 02:43:45 +00:00
--bless windows test
This commit is contained in:
parent
e301291cb6
commit
8caf688844
@ -1,7 +1,7 @@
|
||||
// ignore-windows
|
||||
|
||||
mod not_a_real_file; //~ ERROR file not found for module `not_a_real_file`
|
||||
//~^ HELP to create the module `not_a_real_file`, create file "
|
||||
//~^ HELP to create the module `not_a_real_file`, create file
|
||||
|
||||
fn main() {
|
||||
assert_eq!(mod_file_aux::bar(), 10);
|
||||
|
@ -5,4 +5,5 @@ mod not_a_real_file; //~ ERROR file not found for module `not_a_real_file`
|
||||
|
||||
fn main() {
|
||||
assert_eq!(mod_file_aux::bar(), 10);
|
||||
//~^ ERROR failed to resolve: use of undeclared type or module `mod_file_aux`
|
||||
}
|
||||
|
@ -1,11 +1,18 @@
|
||||
error[E0583]: file not found for module `not_a_real_file`
|
||||
--> $DIR/mod_file_not_exist_windows.rs:3:5
|
||||
--> $DIR/mod_file_not_exist_windows.rs:3:1
|
||||
|
|
||||
LL | mod not_a_real_file;
|
||||
| ^^^^^^^^^^^^^^^
|
||||
| ^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
= help: to create the module `not_a_real_file`, create file "$DIR/not_a_real_file.rs"
|
||||
|
||||
error: aborting due to previous error
|
||||
error[E0433]: failed to resolve: use of undeclared type or module `mod_file_aux`
|
||||
--> $DIR/mod_file_not_exist_windows.rs:7:16
|
||||
|
|
||||
LL | assert_eq!(mod_file_aux::bar(), 10);
|
||||
| ^^^^^^^^^^^^ use of undeclared type or module `mod_file_aux`
|
||||
|
||||
For more information about this error, try `rustc --explain E0583`.
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
Some errors have detailed explanations: E0433, E0583.
|
||||
For more information about an error, try `rustc --explain E0433`.
|
||||
|
Loading…
Reference in New Issue
Block a user