URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-template1.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/50248, DR 1358
// { dg-options -std=c++0x }
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;
}
Go to most recent revision | Compare with Previous | Blame | View Log