rust/tests/ui/array-slice-vec/infer_array_len.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
240 B
Rust
Raw Normal View History

2023-06-21 18:01:31 +00:00
//@ check-pass
2020-03-30 17:13:20 +00:00
struct A;
impl From<A> for [u8; 2] {
fn from(a: A) -> Self {
[0; 2]
}
}
impl From<A> for [u8; 3] {
fn from(a: A) -> Self {
[0; 3]
}
}
fn main() {
let a = A;
let [_, _] = a.into();
}