* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / ptrmem1.C
blobec73e6221f5bcc71e1ee12d24e759f65bd8bf1dc
1 // { dg-do assemble  }
3 class x
5 public:
6   virtual int is_constant();
7 };
9 void foo()
11   x* y;
12   if (y->is_constant) // { dg-error "" } assuming &
13     {
14     }