Fix PR48484
[official-gcc.git] / gcc / testsuite / g++.dg / tc1 / dr217.C
blobcfa2803974d673166e26ca1f2746faa0a9b82191
1 // { dg-do compile }
2 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3 // DR217: Default arguments for non-template member functions of class 
4 //  templates 
6 template <class T>
7 struct S
9   void foo (int);
12 template <class T>
13 void S<T>::foo (int = 0)  // { dg-error "" "default arguments for parameters of member functions of class templates can be specified in the initial declaration only" { xfail *-*-* } }
14 { }