* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / expr1.C
blob415f0f19ef27ff87abd90a58993bb3dc75c43015
1 // { dg-do assemble  }
3 // Simplified from bug report by Trevor Taylor <ttaylor@powerup.com.au>
5 struct T {
6   int operator()(int) { return 0; } // { dg-message "operator|candidate expects" }
7 };
9 int main() {
10   T()(); // { dg-error "match" } no such operator
11   return 0;