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