PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / expr / pmf-1.C
blobe6b72198281c7549fcc8e3ad75e6264db020a0cc
1 // C++ PR/2521
2 // Copyright (C) 2002 Free Software Foundation
3 // Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
5 // { dg-do compile }
7 struct A 
9   void f();
10   void foo(void (A::*)(int));       // { dg-message "void A::foo|no known conversion" }
11   template<typename T>
12     void g(T);
13   void h()
14   {
15     void (A::*p)() = &A::f;
16     void (A::*q)() = &(A::f);       // { dg-error "parenthesized" }
17     foo(&g<int>);                   // { dg-error "no matching" }
18   }