blob: bc2e9aa92ce1e01f9a4cc3e30b078229b21d7eb5 [file] [log] [blame]
struct Foo(isize, isize, isize, isize);
pub fn main() {
let Self::anything_here_kills_it(a, b, ..) = Foo(5, 5, 5, 5);
//~^ ERROR: failed to resolve
match [5, 5, 5, 5] {
[..] => {},
}
}