[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / unify9.C
blobee18b86eb1f0508c8e31b4ee1e4333d8a96d68ef
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 7 Jul 2005 <nathan@codesourcery.com>
4 // Origin:Wolfgang Bangerth <bangerth@dealii.org>
5 // PR 21799: deduction of cvqualifiers on member functions was wrong
7 template <class T> void f (T &,       void (T::*)()      ); // { dg-message "note" }
8  
9 struct X { 
10     void g() const {}
11 }; 
13 const X *x; 
15 int main () { 
16   f (*x, &X::g);  // {  dg-error "no matching function" }
17   // { dg-message "(candidate|incompatible cv-qualifiers)" "candidate note" { target *-*-* } .-1 }
18