OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor8.C
1 // PR c++/46466
2 // { dg-options "-std=c++0x -fno-elide-constructors" }
3
4 struct S { bool b; };
5 constexpr S f() { return S{true}; }
6 static_assert(f().b,  "");