Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:void

2 void f();
3 void f(int);
4 void f(int, float);
5 void f(int, int);
6 void f(int, ...);
9 void f(int, Float); // expected-note {{previous declaration is here}}
13 void g(void); // expected-note {{previous declaration is here}}
19 void f();
20 void f(int); // expected-note {{previous declaration is here}}
21 void f() const;
23 void f(INT); // expected-error{{cannot be redeclared}}
25 void g(int); // expected-note {{previous declaration is here}}
26 void g(int, float); // expected-note {{previous declaration is here}}
29 static void g(float);
30 static void g(int); // expected-error {{static and non-static member functions with the same parameter types cannot be overloaded}}