aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/concepts-pr67210.C
blob: a31750eb495b47f719a81e42d18dea0d99fbf273 (plain)
1
2
3
4
5
6
7
8
9
10
// 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 >) {}