* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / concepts / class1.C
blob94a5d23a873aa9284272781b9529d2942368306a
1 // { dg-options "-std=c++17 -fconcepts" }
3 template<typename T>
4   concept bool C() { return __is_class(T); }
6 template<typename T>
7   requires C<T>()
8     struct S { };
10 struct X { };
12 S<X> sx;
14 int main() { }