blob: 81fc83737bc02141cabfb8ec500f97353600d508 [file] [log] [blame]
// PR c++/46466
// { dg-options "-std=c++0x -fno-elide-constructors" }
struct S { bool b; };
constexpr S f() { return S{true}; }
static_assert(f().b, "");