24 lines · plain
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.cpp2// RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp3 4typedef unsigned int NSUInteger;5 6typedef struct _NSRange {7 NSUInteger location;8 NSUInteger length;9} NSRange;10 11static __inline NSRange NSMakeRange(NSUInteger loc, NSUInteger len) {12 NSRange r;13 r.location = loc;14 r.length = len;15 return r;16}17 18void bar() {19 __block NSRange previousRange = NSMakeRange(0, 0); 20 void (^blk)() = ^{21 previousRange = NSMakeRange(1, 0);22 };23}24