Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:foo

13 class foo {
14 foo(foo&, int); // expected-note {{previous}}
15 foo(int); // expected-note {{previous}}
16 foo(const foo&); // expected-note {{previous}}
19 foo::foo(foo&, int = 0) { } // expected-error {{makes this constructor a copy constructor}}
20 foo::foo(int = 0) { } // expected-error {{makes this constructor a default constructor}}
21 foo::foo(const foo& = 0) { } //expected-error {{makes this constructor a default constructor}}