* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / init / ptrmem4.C
blob44ab8cf652916ced72a9e1b6fdbb993455c8f318
1 // PR c++/32245
2 // { dg-do run } 
4 struct foo {
5   int mem1;
6   int foo::* mem2;
7 };
9 int main () {
10   foo x = { 0 } ;
11   if (x.mem2 != foo().mem2)
12     return 1;