1// RUN: %clang_cc1 -fsyntax-only -verify %s 2 3typedef struct objc_class *Class; 4@interface A 5-(Class) foo; 6@end 7 8void f0(A *a) { int x = [[a foo] baz]; } // expected-warning {{method '+baz' not found (return type defaults to 'id')}} \ 9 // expected-error {{incompatible pointer to integer conversion initializing 'int' with an expression of type 'id'}} 10