2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2014-08-05 15:13:57 -07:00
|
|
|
// ignore-tidy-cr
|
|
|
|
|
|
|
|
|
|
// this file has some special \r\n endings (use xxd to see them)
|
|
|
|
|
|
2019-04-23 11:44:27 +01:00
|
|
|
fn main() {assert_eq!(b"", b"\
|
2014-08-05 15:13:57 -07:00
|
|
|
");
|
2019-04-23 11:44:27 +01:00
|
|
|
assert_eq!(b"\n", b"
|
2014-08-05 15:13:57 -07:00
|
|
|
");
|
|
|
|
|
}
|