summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor8.C
blob: 81fc83737bc02141cabfb8ec500f97353600d508 (plain)
1
2
3
4
5
6
// 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,  "");