Minimal reproduction: ```rust let xs: &[f64] = &[0.0]; match xs { &[x] => { x; // {unknown} } _ => {} } ```