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