@@ -10,19 +10,8 @@ LL - let _ = include_str!("include-macros/file.txt");
1010LL + let _ = include_str!("file.txt");
1111 |
1212
13- error: couldn't read `$DIR/hello.rs`: $FILE_NOT_FOUND_MSG
14- --> $DIR/parent_dir.rs:6:13
15- |
16- LL | let _ = include_str!("hello.rs");
17- | ^^^^^^^^^^^^^^^^^^^^^^^^
18- |
19- help: there is a file with the same name in a different directory
20- |
21- LL | let _ = include_str!("../hello.rs");
22- | +++
23-
2413error: couldn't read `$DIR/../../data.bin`: $FILE_NOT_FOUND_MSG
25- --> $DIR/parent_dir.rs:8 :13
14+ --> $DIR/parent_dir.rs:6 :13
2615 |
2716LL | let _ = include_bytes!("../../data.bin");
2817 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -34,7 +23,7 @@ LL + let _ = include_bytes!("data.bin");
3423 |
3524
3625error: couldn't read `$DIR/tests/ui/include-macros/file.txt`: $FILE_NOT_FOUND_MSG
37- --> $DIR/parent_dir.rs:10 :13
26+ --> $DIR/parent_dir.rs:8 :13
3827 |
3928LL | let _ = include_str!("tests/ui/include-macros/file.txt");
4029 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -45,5 +34,5 @@ LL - let _ = include_str!("tests/ui/include-macros/file.txt");
4534LL + let _ = include_str!("file.txt");
4635 |
4736
48- error: aborting due to 4 previous errors
37+ error: aborting due to 3 previous errors
4938
0 commit comments