[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Rewriter / rewrite-constructor-init.mm
blobfa0e14893e0f118df66f478fbf60d219b22a05c5
1 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
3 // rdar : // 8213998
5 typedef unsigned int NSUInteger;
7 typedef struct _NSRange {
8     NSUInteger location;
9     NSUInteger length;
10 } NSRange;
12 static __inline NSRange NSMakeRange(NSUInteger loc, NSUInteger len) {
13     NSRange r;
14     r.location = loc;
15     r.length = len;
16     return r;
19 void bar() {
20     __block NSRange previousRange = NSMakeRange(0, 0);    
21     void (^blk)() = ^{
22         previousRange = NSMakeRange(1, 0);
23     };