OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / unify9.C
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 7 Jul 2005 <nathan@codesourcery.com>
3
4 // Origin:Wolfgang Bangerth <bangerth@dealii.org>
5 // PR 21799: deduction of cvqualifiers on member functions was wrong
6
7 template <class T> void f (T &,       void (T::*)()      ); // { dg-message "candidate" }
8  
9 struct X { 
10     void g() const {}
11 }; 
12  
13 const X *x; 
14  
15 int main () { 
16   f (*x, &X::g);  // {  dg-error "no matching function" }
17