aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/no-elide1.C
blob: 75b648ed12024c782640b965adac4c68943769f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/47503
// { dg-options "-fno-elide-constructors" }

struct A
{
  int i;
  A ();
};

struct B
{
  A a;
  B (A &aa) : a (aa) { }
};