1 2 3 4 5 6 7 8 9 10
// P2095R0 // { dg-do compile { target c++20 } } // { dg-options "" } template <class... T> void f(T... t) { [&...x=t]{}; [...&x=t]{}; // { dg-warning "7:&" } }