summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor7.C
blob: 8338bf1f7ec445dc954f21d592098ba002e9800e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// PR c++/47199
// { dg-options "-std=c++0x -fno-elide-constructors" }

template < int > struct S
{
  constexpr S (int r):rr (r)
  {
  }
  S (const S &) = default;
  static constexpr S s ()
  {
    return -1;
  }
  int rr;
};

static const int d = S < 0 >::s ().rr;