[docs] Fix build-docs.sh
[llvm-project.git] / clang / test / Rewriter / rewrite-modern-default-property-synthesis.mm
blob4a772afabd436235e20e8032531ac8a8155167b7
1 // RUN: %clang_cc1 -E %s -o %t.mm
2 // RUN: %clang_cc1 -x objective-c++ -fms-extensions -rewrite-objc %t.mm -o %t-rw.cpp 
3 // RUN: FileCheck --input-file=%t-rw.cpp %s
4 // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -Werror -DSEL="void *" -Did="struct objc_object *" -Wno-attributes -Wno-address-of-temporary -U__declspec -D"__declspec(X)=" %t-rw.cpp
5 // rdar://11374235
7 extern "C" void *sel_registerName(const char *);
9 @interface NSObject 
10 - (void) release;
11 - (id) retain;
12 @end
13 @class NSString;
15 @interface SynthItAll : NSObject
16 @property int howMany;
17 @property (retain) NSString* what; 
18 @end
20 @implementation SynthItAll
21 @end
24 @interface SynthSetter : NSObject
25 @property (nonatomic) int howMany; 
26 @property (nonatomic, retain) NSString* what; 
27 @end
29 @implementation SynthSetter
31 - (int) howMany {
32     return _howMany;
34 // - (void) setHowMany: (int) value
36 - (NSString*) what {
37     return _what;
39 // - (void) setWhat: (NSString*) value    
40 @end
43 @interface SynthGetter : NSObject
44 @property (nonatomic) int howMany;
45 @property (nonatomic, retain) NSString* what;
46 @end
48 @implementation SynthGetter
49 // - (int) howMany
50 - (void) setHowMany: (int) value {
51     _howMany = value;
54 // - (NSString*) what
55 - (void) setWhat: (NSString*) value {
56     if (_what != value) {
57         [_what release];
58         _what = [value retain];
59     }
61 @end
63 typedef struct {
64         int x:1;
65         int y:1;
66 } TBAR;
68 @interface NONAME
70   TBAR _bar;
72 @property TBAR bad;
73 @end
75 @implementation NONAME
76 @end
78 // CHECK: (*(int *)((char *)self + OBJC_IVAR_$_SynthItAll$_howMany)) = howMany;
79 // CHECK: return (*(int *)((char *)self + OBJC_IVAR_$_SynthGetter$_howMany));
80 // CHECK: (*(TBAR *)((char *)self + OBJC_IVAR_$_NONAME$_bad)) = bad;