1 2 3 4 5 6 7 8 9
// PR c++/95434 // { dg-do compile { target c++20 } } template <class> void f() { [] <template <class> class U> { U{0}; }; } template void f<int>();