* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / array2.C
blob5c1b6657786ef6f5c918a79261c09a6db0b88b91
1 // { dg-do run  }
2 int i;
4 struct S {
5   S () {
6     ++i;
7   }
9   S (int) {
10   }
13 int main()
15   S s[3][3] = { 2 };
17   if (i != 8)
18     return 1;