Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Index / Inputs / t2.m
blob3f103eeb1dc72c830ce9979a1bef4b8ee72d5a25
1 #include "objc.h"
3 static void foo() {
4   Sub *sub;
5   int x = [sub my_var];
6   [sub my_method:x];
7   [Sub my_method:x];
10 @implementation Sub
11 -(void) my_method: (int)param {
13 @end