aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/concepts-pr67210a.C
blob: 1d63a844aa49b664798a2fa7b0cdd132247c668e (plain)
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 >) {}