URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [pr51225.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/51225
// { dg-options "-std=c++0x" }
template<int> struct A {};
template<typename> void foo()
{
A<int(x)> a; // { dg-error "not declared|invalid type" }
}
template<typename> struct bar
{
static constexpr A<1> b = A<1>(x); // { dg-error "not declared" }
};
Go to most recent revision | Compare with Previous | Blame | View Log