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;