xref: /llvm-project/clang/test/SemaObjC/method-lookup-5.m (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
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