Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / FixIt / fixit-class-method-messaging.m
blob4211930a8bb2439399dcd1ee4c5627968c641149
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // RUN: %clang_cc1 -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
4 @interface NSObject @end
6 @interface I : NSObject // expected-note 3 {{receiver is instance of class declared here}}
7 + (id) ClassMeth;
8 - (I*) MethInstPI;
9 @end
11 I* pi;
13 I* foobar(void);
15 @implementation I
16 - (id) PrivInstMeth {
17   [ foobar() ClassMeth]; // expected-warning {{instance method '-ClassMeth' not found (return type defaults to 'id')}} \
18                          // expected-note {{receiver expression is here}}
19 // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:5-[[@LINE-2]]:13}:"I
20   [[self MethInstPI] ClassMeth]; // expected-warning {{instance method '-ClassMeth' not found (return type defaults to 'id')}} \
21                                  // expected-note {{receiver expression is here}}
22 // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:4-[[@LINE-2]]:21}:"I
23   return [pi ClassMeth]; // expected-warning {{instance method '-ClassMeth' not found (return type defaults to 'id')}} \
24                          // expected-note {{receiver expression is here}}
25 // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:11-[[@LINE-2]]:13}:"I
27 + (id) ClassMeth { return 0; }
28 - (I*) MethInstPI { return 0; }
29 @end