Ada: Fix assertion failure with iterator in container aggregate
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr87640.c
blob09bd3b42f344626eae9c30ab78108f29278e8304
1 /* { dg-do compile } */
3 int main ()
4 {
5 unsigned b = 0;
6 int c, d = -8;
7 for (; b < 2; b++)
8 for (c = 1; c; c--)
9 d++;
10 return 0;