[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / ARCMT / releases-driver.m.result
blobe7da9a04fc62ab01070362a505bdf3405756115f
1 // RUN: %clang_cc1 -fblocks -fsyntax-only -fobjc-arc -x objective-c %s.result
2 // RUN: cat %s > %t
3 // RUN: %clang_cc1 -arcmt-action=modify -triple x86_64-apple-macosx10.6 -x objective-c %t
4 // RUN: diff %t %s.result
5 // RUN: rm %t
7 typedef int BOOL;
9 id IhaveSideEffect(void);
11 @protocol NSObject
12 - (BOOL)isEqual:(id)object;
13 - (id)retain;
14 - (oneway void)release;
15 @end
17 @interface NSObject <NSObject> {}
18 @end
20 @interface Foo : NSObject {
21   id bar;
23 @property (strong) id bar;
24 -(void)test:(id)obj;
25 @end
27 @implementation Foo
29 @synthesize bar;
31 -(void)test:(id)obj {
32   id x = self.bar;
33   self.bar = obj;
34   // do stuff with x;
36   IhaveSideEffect();
38   x = 0;
40   
41 @end
43 void func(Foo *p) {
46 @interface Baz {
47         id <NSObject> _foo;
49 @end
51 @implementation Baz
52 @end
54 #define RELEASE_MACRO(x) [x release]
55 #define RELEASE_MACRO2(x) RELEASE_MACRO(x)
57 void test2(id p) {