aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor7.C
blob: 5d18e56435278ed00d511f9d28fc479d03ec53da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/47199
// { dg-do compile { target c++11 } }
// { dg-options "-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;