[clang-format] Fix a bug in aligning comments above PPDirective (#72791)
[llvm-project.git] / clang / test / ARCMT / GC-no-arc-runtime.m
blob99ba2eb5f7aef3fe8a86e2c00f281a0e776a59d4
1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-runtime-has-weak -fobjc-arc -x objective-c %s.result
2 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-gc-only -x objective-c %s > %t
3 // RUN: diff %t %s.result
4 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-gc-only -x objective-c++ %s > %t
5 // RUN: diff %t %s.result
7 // MRC __weak broke this test somehow.
8 // XFAIL: *
10 #include "Common.h"
11 #include "GC.h"
13 void test1(CFTypeRef *cft) {
14   id x = NSMakeCollectable(cft);
17 @interface I1
18 @end
20 @implementation I1
21 -(void)dealloc {
22   // dealloc
23   test1(0);
26 -(void)finalize {
27   // finalize
28   test1(0);
30 @end
32 @interface I2
33 @property (retain) id prop;
34 @end
36 @implementation I2
37 @synthesize prop;
39 -(void)finalize {
40   self.prop = 0;
41   // finalize
42   test1(0);
44 @end
46 __attribute__((objc_arc_weak_reference_unavailable))
47 @interface QQ {
48   __weak id s;
49   __weak QQ *q;
51 @end
53 @interface I3
54 @property (assign) I3 *__weak pw1, *__weak pw2;
55 @property (assign) I3 *__strong ps;
56 @property (assign) I3 * pds;
57 @end
59 @interface I4Impl {
60   I4Impl *pds2;
62 @property (assign) I4Impl *__weak pw1, *__weak pw2;
63 @property (assign) I4Impl *__strong ps;
64 @property (assign) I4Impl * pds;
65 @property (assign) I4Impl * pds2;
66 @end
68 @implementation I4Impl
69 @synthesize pw1, pw2, ps, pds, pds2;
71 -(void)test1:(CFTypeRef *)cft {
72   id x = NSMakeCollectable(cft);
74 @end
76 @interface I5 {
77   __weak id prop;
79 @property (readonly) __weak id prop;
80 @end