(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
concepts/
pr67249.C
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts-ts" }

template<class T> concept bool C1 = true;
template<class A, class B> struct Pair {};
void f(Pair<auto, C1>);