Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Rewriter / undeclared-method-1.m
bloba52c677bc721084040f5cb1ab5b11f6103edb682
1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
3 @interface Derived @end
5 int main(void) {
6   Derived *v ;
7   [v free];
8   return 0;