2020-09-01 23:50:07 -05:00
|
|
|
fn main() {
|
|
|
|
// foo must be used.
|
|
|
|
foo();
|
|
|
|
}
|
|
|
|
|
2020-11-08 22:28:03 -06:00
|
|
|
// For this test to operate correctly, foo's body must start on exactly the same
|
|
|
|
// line and column and have the exact same length in bytes in a.rs and b.rs. In
|
|
|
|
// a.rs, the body must end on a line number which does not exist in b.rs.
|
|
|
|
// Basically, avoid modifying this file, including adding or removing whitespace!
|
2020-09-01 23:50:07 -05:00
|
|
|
fn foo() {
|
2024-05-29 00:01:33 -05:00
|
|
|
assert_eq!(1, 1); ////
|
2020-09-01 23:50:07 -05:00
|
|
|
}
|