Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-trivial3.C
blob: 6833cd3ab80bee4af7b074bbb7467aac3a9c53ce [
file
] [
log
] [
blame
]
// PR c++/80077
// { dg-do compile { target c++11 } }
// { dg-options -fno-elide-constructors }
struct
X_t
{
X_t
()
=
default
;
};
constexpr
X_t
x
=
X_t
();