Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / method-lookup-5.m
blob40d3ea42dff45af75bbf77c1efc15b8c18107bf2
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 typedef struct objc_class *Class;
4 @interface A
5 -(Class) foo;
6 @end
8 void 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'}}