1 // { dg-do link }
2 
3 // Copyright (C) 2005 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 7 Jul 2005 <nathan@codesourcery.com>
5 
6 // Origin:Wolfgang Bangerth <bangerth@dealii.org>
7 // PR 21799: deduction of cvqualifiers on member functions was wrong
8 
9 template <class T> void f (T &,       void (T::*)()      );
f(const T &,void (T::*)()const)10 template <class T> void f (const T &, void (T::*)() const) {}
11 
12 struct X {
gX13     void g() const {}
14 };
15 
16 const X *x;
17 
main()18 int main () {
19   f (*x, &X::g);
20 }
21