* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / concepts / partial-concept-id2.C
blob4c1373a0edad437cca799f1cb4a82c2967ac7716
1 // { dg-options "-std=c++17 -fconcepts" }
3 // Make sure that we check partial concept ids
4 // with variable concepts.
6 template<class A, class B>
7 concept bool C = true;
9 template<C<int> D>
10 struct E
12   int f = 0;
15 E<double> e;