// P2095R0
// { dg-do compile { target c++20 } }
// { dg-options "" }
template <class... T>
void f(T... t)
{
  [&...x=t]{};
  [...&x=t]{};			// { dg-warning "7:&" }
}
// P2095R0
// { dg-do compile { target c++20 } }
// { dg-options "" }
template <class... T>
void f(T... t)
{
  [&...x=t]{};
  [...&x=t]{};			// { dg-warning "7:&" }
}