Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Index / Inputs / t1.m
blobb7c86cd6aac786646c3c44d999352b869fa2b087
1 #include "objc.h"
3 static void foo() {
4   Base *base;
5   int x = [base my_var];
6   [base my_method:x];
7   [Base my_method:x];
10 @implementation Base
11 -(int) my_var {
12   return my_var;
15 -(void) my_method: (int)param {
18 +(void) my_method: (int)param {
20 @end