URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-base2.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/46293
// { dg-options -std=c++0x }
struct A
{
};
struct C
{
int i;
constexpr C(int i): i(i) {}
};
struct B: A, C
{
constexpr B(): A(), C(42) { }
};
constexpr B b{};
Go to most recent revision | Compare with Previous | Blame | View Log