enum E { A(T) } fn main() { match E::::A(1) { E::A(v) => { //~ ERROR generic args in patterns require the turbofish syntax println!("{v:?}"); }, } }