]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-16278.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-16278.rs
1 // run-pass
2 // ignore-tidy-cr
3
4 // this file has some special \r\n endings (use xxd to see them)
5
6 fn main() {assert_eq!(b"", b"\\r
7                                    ");
8 assert_eq!(b"\n", b"\r
9 ");
10 }