fn main() {
assert_eq!(
b"",
b"\
"
);
assert_eq!(
b"\n",
b"
"
);
}
this passes cargo run but RA diagnostic is not satisfied with the traits
at crate ra, file /tmp/ra/src/main.rs: Error RustcHardError("E0277") from LineCol { line: 1, col: 4 } to LineCol { line: 1, col: 14 }: the trait bound `[u8; 0]: PartialEq<[u8; 37]>` is not satisfied
required by the bound `&[u8; 0]: PartialEq<&[u8; 37]>`
this passes
cargo runbut RA diagnostic is not satisfied with the traits