[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Rewriter / rewrite-cast-ivar-modern-access.mm
blob4cea4f6eb17cbd597fd0dcaefb371eaff1252b8f
1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp 
2 // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -fblocks -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
4 @interface F {
5   int supervar;
7 @end
9 @interface G : F {
10 @public
11   int ivar;
13 @end
15 @implementation G
16 - (void)foo:(F *)arg {
17         int q = arg->supervar;
18         int v = ((G *)arg)->ivar;
20 @end
22 void objc_assign_strongCast(id);
23 void __CFAssignWithWriteBarrier(void **location, void *value) {
24         objc_assign_strongCast((id)value);
27 // radar 7607605
28 @interface RealClass {
29         @public
30         int f;
32 @end
34 @implementation RealClass
35 @end
37 @interface Foo {
38         id reserved;
40 @end
42 @implementation Foo
43 - (void)bar {
44         ((RealClass*)reserved)->f = 99;
46 @end