blob: adb47a0522ae9f248678a2fc60a9ca208a373361 [file] [log] [blame]
// PR c++/8785
// Origin: Alexander Zvyagin <Alexander.Zviagine@cern.ch>
// { dg-do compile }
template <int N,typename T> struct A
{ // { dg-error "" }
typedef T X;
template <int M> void foo (const A<M,X>&);
};
template <int N,int M,typename T>
void A<N,T>::foo (const A<M,X>&) {} // { dg-error "" }