Find all methods whose return type is a primitive one

// MethodDecl [ Type::PrimitiveType ]

class Foo {}

class Bar {
// no match - returns reference
   Foo foobar() {
      return new Foo();
   }

// finds this
   int intbar() {
      return 0;
   }
}