Lines Matching full:void
5 void foo() {
8 void foo2();
13 void foo4() { } // expected-note {{previous definition is here}} expected-note {{previous definition is here}}
14 void foo4() { } // expected-error {{class member cannot be redeclared}} expected-error {{redefinition of 'foo4'}} expected-note {{previous definition is here}}
16 friend void foo3() {
23 void B<T>::foo4() {// expected-error {{redefinition of 'foo4'}}
27 void A<T>::foo2() {
33 void foo3() {
37 template void A<int>::foo2();
40 void undeclared()
45 template <class T> void foo5() {} //expected-note {{previous definition is here}}
46 template <class T> void foo5() {} // expected-error {{redefinition of 'foo5'}}
58 void f() {
73 struct BindState<void(void*)> {
74 static void Run() { }
79 typedef void RunType();
89 return Callback(BindState<void(void*)>());