aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/return.C
blob: af9791c5769c2d95f3383387b10c907d53245899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do run  }
// PRMS Id: 5331
// Bug: the return value of foo is constructed in a temporary and then
// copied into the return slot.  This is not necessary.

int c = 0;

struct X {
   X(int i) { }
   X(X const &XX) { c = 1; }
   ~X() { }
};

const X foo() { 
  return X(3); 
}

int main()
{
  foo();
  return c;
}