* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / pr56239.C
blob08f7f6889381b078811900642b473dfd4ebd2f49
1 // PR c++/56239
2 // { dg-do compile }
4 struct S
6   int operator () () { return 0; }
7 };
9 int
10 main ()
12   return (S ()) ();