OSDN Git Service

gcc/cp/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / unify9.C
index 1e16c43..40f6b92 100644 (file)
@@ -4,7 +4,7 @@
 // Origin:Wolfgang Bangerth <bangerth@dealii.org>
 // PR 21799: deduction of cvqualifiers on member functions was wrong
 
-template <class T> void f (T &,       void (T::*)()      ); // { dg-message "candidate" }
+template <class T> void f (T &,       void (T::*)()      ); // { dg-message "note" }
  
 struct X { 
     void g() const {}
@@ -14,4 +14,5 @@ const X *x;
  
 int main () { 
   f (*x, &X::g);  // {  dg-error "no matching function" }
+  // { dg-message "candidate" "candidate note" { target *-*-* } 16 }
 }