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

namespace X {
  template<class>
  concept bool C = true;
}

X::C{T}
void foo() {}

int main() { foo<int>(); }