URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [spec16.C] - Rev 693
Compare with Previous | Blame | View Log
// { dg-do compile }// Contributed by Giovanni Bajo <giovannibajo at gcc dot gnu dot org>// PR c++/14497: Reject specialization without template headerstemplate <int N>struct A {template<int M> void B () ;};void A<0>::B<0>() { // { dg-error "specializing member 'A<0>::B<0>' requires 'template<>' syntax" }}
