aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/for1.C
blob: 420e85cff6964b2cc85f77957dcf51ed1798b0aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// PR c++/13865
// Bug: We were destroying 'a' before executing the loop.

// { dg-do run }

#include <stdio.h>

int i;
int r;

class A
{
public:
  A() { printf("A ctor\n"); }
  ~A()
  {
    printf("A dtor\n");
    if (i != 2)
      r = 1;
  }
};

int main(int argc, char **argv)
{
  for (A a; i < 2; ++i) {
    printf("iteration %d\n", i);
  }

  return r;
}