// { dg-do compile } // Origin: Giovanni Bajo // DR217: Default arguments for non-template member functions of class // templates template struct S { void foo (int); }; template void S::foo (int = 0) // { dg-error "" "default arguments for parameters of member functions of class templates can be specified in the initial declaration only" } { }