Lines Matching refs:foo
4 class foo {
5 foo(foo&, int); // expected-note {{was not a special member function}}
6 foo(int); // expected-note {{was not a special member function}}
7 foo(const foo&); // expected-note {{was a copy constructor}}
10 foo::foo(foo&, int = 0) { } // expected-warning {{makes this constructor a copy constructor}}
11 foo::foo(int = 0) { } // expected-warning {{makes this constructor a default constructor}}
12 foo::foo(const foo& = 0) { } //expected-warning {{makes this constructor a default constructor}}