OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / unify8.C
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::*)()      ); 
10 template <class T> void f (const T &, void (T::*)() const) {} 
11  
12 struct X { 
13     void g() const {}
14 }; 
15  
16 const X *x; 
17  
18 int main () { 
19   f (*x, &X::g); 
20 }