Lines Matching full:void
6 void foo(void (A::*)(int)); // expected-note {{passing argument to parameter here}}
7 template<typename T> void g(T);
9 void test() {
10 foo(&g<int>); // expected-error {{can't form member pointer of type 'void (test0::A::*)(int)' without '&' and class name}}
18 static void f(void (A::*)());
19 static void f(void (*)(int));
20 void g();
21 static void g(int);
23 void test() {
37 void test();
40 void A::test() {