URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-99.C] - Rev 693
Compare with Previous | Blame | View Log
// Origin PR c++/51462
// { dg-options "-std=c++11" }
struct A
{
int i = 0;
};
struct B
{
A a;
constexpr B() : a(0) {} // { dg-error "no matching function" }
};