1 // PR c++/80077
2 // { dg-do compile { target c++11 } }
3 // { dg-options -fno-elide-constructors }
4 
5 struct X_t { X_t() = default; };
6 constexpr X_t x = X_t();
7