URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-ctor7.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/47199
// { dg-options "-std=c++0x -fno-elide-constructors" }
template < int > struct S
{
constexpr S (int r):rr (r)
{
}
S (const S &) = default;
static constexpr S s ()
{
return -1;
}
int rr;
};
static const int d = S < 0 >::s ().rr;
Go to most recent revision | Compare with Previous | Blame | View Log