3 // Copyright (C) 2005 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 7 Jul 2005 <nathan@codesourcery.com>
6 // Origin:Wolfgang Bangerth <bangerth@dealii.org>
7 // PR 21799: deduction of cvqualifiers on member functions was wrong
9 template <class T> void f (T &, void (T::*)() );
10 template <class T> void f (const T &, void (T::*)() const) {}