URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-incomplete2.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// A constructor that might or might not be constexpr still makes
// its class literal.
// { dg-options -std=c++0x }
template <class T>
struct B
{
constexpr B(T) { }
constexpr B() {}
};
struct A
{
B<A> b;
};
constexpr A a {};
template <class T>
struct C
{
constexpr C(T) { }
C() {}
};
struct D
{
C<D> c;
};
constexpr D d {}; // { dg-error "non-constexpr function" }
Go to most recent revision | Compare with Previous | Blame | View Log