* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / concepts / intro3.C
blob78d091d3a883c0181ecad5cb256f2e366c55b3d5
1 // { dg-options "-std=c++17 -fconcepts" }
3 template<typename ... T>
4   concept bool C1 = true;
6 template<int ... N>
7   concept bool C2 = true;
9 C1{...A} void f1() {};
10 C2{...A} void f2() {};
12 int main()
14   f1<int, short, char>();
15   f2<1, 2, 3>();
16   return 0;