File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
src/test/run-make/incr-prev-body-beyond-eof Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,11 @@ fn main() {
33 foo ( ) ;
44}
55
6+ // For this test to operate correctly, foo's body must start on exactly the same
7+ // line and column and have the exact same length in bytes in a.rs and b.rs. In
8+ // a.rs, the body must end on a line number which does not exist in b.rs.
9+ // Basically, avoid modifying this file, including adding or removing whitespace!
610fn foo ( ) {
7- // foo's span in a.rs and b.rs must be identical
8- // with respect to start line/column and length.
911 assert_eq ! ( 1 , 1 ) ;
1012
1113
Original file line number Diff line number Diff line change @@ -3,8 +3,10 @@ fn main() {
33 foo ( ) ;
44}
55
6+ // For this test to operate correctly, foo's body must start on exactly the same
7+ // line and column and have the exact same length in bytes in a.rs and b.rs. In
8+ // a.rs, the body must end on a line number which does not exist in b.rs.
9+ // Basically, avoid modifying this file, including adding or removing whitespace!
610fn foo ( ) {
7- // foo's span in a.rs and b.rs must be identical
8- // with respect to start line/column and length.
911 assert_eq ! ( 1 , 1 ) ; ////
1012}
You can’t perform that action at this time.
0 commit comments