Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
struct A;
impl From<A> for [u8; 2] {
fn from(a: A) -> Self {
[0; 2]
}
impl From<A> for [u8; 3] {
[0; 3]
fn main() {
let a = A;
let [_, _] = a.into();