view gcc/testsuite/g++.dg/cpp0x/constexpr-template1.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR c++/50248, DR 1358
// { dg-do compile { target c++11 } }

template<class Elt, unsigned max>
struct earray
{
    Elt elts[max];
    earray() = default;
    template<typename... Elt2>
    constexpr earray(Elt2&& ... e): elts(0) { }
};

struct SessionData
{
    SessionData(SessionData&) = delete;
    SessionData() = default;
};

struct MapSessionData : SessionData
{
    earray<short, 11> equip_index;
};

void test()
{
    MapSessionData *sd = new MapSessionData;
}