1 2 3 4 5 6 7 8 9 10 11
// PR c++/67210 // { dg-do compile { target c++20 } } // { dg-additional-options -Wno-abbreviated-auto-in-template-arg } template <class T, class U> concept C = true; template <class T> struct A {}; void f(A<C<int> auto >) {}