blob: 044e677363c8ce9f44f56161dd1889b8dd633c3f [file] [log] [blame]
// PR c++/67210
// { dg-do compile { target c++2a } }
template <class T, class U>
concept C = true;
template <class T>
struct A {};
void f(A<C<int> auto >) {}