blob: c5bd5a95426e8088e581af0f33b4a4a1f1bea590 [file] [log] [blame]
// { dg-do compile }
// Contributed by Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// PR c++/14497: Reject specialization without template headers
template <int N>
struct A {
template<int M> void B () ;
};
void A<0>::B<0>() { // { dg-error "explicit specialization" }
}