summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/regress/no-elide1.C
blob: 50df9501635517e191c0b4ffa80d8887fc4fab13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/47503
// { dg-options "-std=c++0x -fno-elide-constructors" }

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

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