blob: 20ceb370c382f9c50eecec6e5756fce5a4355978 [file] [log] [blame]
// PR c++/95434
// { dg-do compile { target c++20 } }
template <class>
void f() {
[] <template <class> class U> { U{0}; };
}
template void f<int>();