summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor6.C
blob: 4f86f73a45818aaced1cf34ae3c7ccf58ac1eef3 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/47041
// { dg-options "-std=c++0x -fno-elide-constructors" }

struct S
{
  int i;
};

S s = S ();