// MethodDecl [ Type::PrimitiveType ]
class Foo {} class Bar { // no match - returns reference Foo foobar() { return new Foo(); } // finds this int intbar() { return 0; } }