[clang-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git] / clang / test / Rewriter / objc-modern-class-init.mm
blob1618bae2ed353a49c03cd84e6a0c421cef4ec9ba
1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp 
2 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
4 @interface Root @end
6 @interface Super : Root
7 @end
9 @interface Sub : Super
10 @end
12 @implementation Sub @end
14 @implementation Root @end
16 @interface Root(Cat) @end
18 @interface Sub(Cat) @end
20 @implementation Root(Cat) @end
22 @implementation Sub(Cat) @end