10 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3typedef struct objc_class *Class;4@interface A5-(Class) foo;6@end7 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