Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / category_right_sub.h
blobc8ba7937f561e24edec0344465e415376219f565
1 @interface Foo(RightSub) <P2>
2 @property id right_sub_prop;
3 @end
5 @interface Foo() {
6 @public
7 int right_sub_ivar;
9 @end
11 @protocol P4
12 - (void)p4_method;
13 @property (retain) id p4_prop;
14 @end
16 @interface Foo(LeftP4) <P4>
17 @end
19 // A hidden extension
20 @interface Foo ()
21 @property (assign) int hiddenPropertyFromExtension;
22 @end