* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / pr78550.C
blob95596b10d7c619f1c5160897f40221bba83d1f75
1 // { dg-do compile { target c++14 } }
3 // PR 78550 ICE with initializer_list and bitfield member
5 namespace std
7   template <class T>
8   struct initializer_list
9     {
10       const T *a;
11       __SIZE_TYPE__ b;
12       constexpr initializer_list (const T *x, __SIZE_TYPE__ y) : a(x), b(y) { }
13     };
15 template <typename T>
16 struct A {
17   A (std::initializer_list<T>);
19 struct B {
20   int k : 1;
22 A<B> a{{0}};