We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
let f = &[99]; println!("{:?}", match [1,2,3,4] { [x, ..xs] => (x, xs), [] => (9, f) });
Says
vectors of length 4 not covered
Should say
pattern [] is unreachable