1 // PR c++/50248, DR 1358
2 // { dg-do compile { target c++11 } }
4 template<class Elt, unsigned max>
9 template<typename... Elt2>
10 constexpr earray(Elt2&& ... e): elts(0) { }
15 SessionData(SessionData&) = delete;
16 SessionData() = default;
19 struct MapSessionData : SessionData
21 earray<short, 11> equip_index;
26 MapSessionData *sd = new MapSessionData;