* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / pr52071.C
blob99456c0041a077c3c6fe337f0e8ae2f3a0154ed9
1 // PR c++/52071
3 struct C1 {
4     C1(int);
5 };
7 struct C2 {
8     C2();
9     C2(C1);
12 void f()
14   int x;
15   int y = 1;
16   C2  vc;
18   vc = C2(C1(x = y));
20   vc = (C2(C1(x = y)));
22   vc = (C2(C1((0, x = y))));