URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wredundant-decls-spec.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/15867
// { dg-options -Wredundant-decls }
template <typename T> struct S
{
void foo() {}
};
template<> void S<int>::foo();
template<> void S<double>::foo(); // { dg-warning "previous declaration" }
template<> void S<double>::foo(); // { dg-warning "redundant redeclaration" }
Go to most recent revision | Compare with Previous | Blame | View Log