Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / bad-receiver-1.m
blob8ccf61f374ba1c3df5425a9c442fb97ce837d9eb
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @interface I
4 - (id) retain;
5 @end
7 int objc_lookUpClass(const char*);
9 void __raiseExc1(void) {
10  [objc_lookUpClass("NSString") retain]; // expected-warning {{receiver type 'int' is not 'id'}}
13 typedef const struct __CFString * CFStringRef;
15 void func(void) {
16   CFStringRef obj;
18   [obj self]; // expected-warning {{receiver type 'CFStringRef' (aka 'const struct __CFString *') is not 'id'}} \\
19                  expected-warning {{method '-self' not found}}