Home | History | Annotate | Download | only in Misc

Lines Matching refs:Foo

16 // There are two classes named Foo::foo here.  Make sure the message gives
18 namespace Foo {
19 class foo {};
23 namespace Foo {
24 class foo;
26 void f(Foo::foo* x); // expected-note{{passing argument to parameter 'x' here}}
29 void test(Foo::foo* x) {
30 bar::f(x); // expected-error{{cannot initialize a parameter of type 'Foo::foo *' (aka 'bar::Foo::foo *') with an lvalue of type 'Foo::foo *'}}