blob: 534e7fa0440ccce1b4d06ef6c55ed27fbc7e3f69 [file] [log] [blame]
Fariborz Jahanian5f371ee2010-07-21 17:36:39 +00001// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %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
4
5typedef unsigned int NSUInteger;
6
7typedef struct _NSRange {
8 NSUInteger location;
9 NSUInteger length;
10} NSRange;
11
12static __inline NSRange NSMakeRange(NSUInteger loc, NSUInteger len) {
13 NSRange r;
14 r.location = loc;
15 r.length = len;
16 return r;
17}
18
19void bar() {
20 __block NSRange previousRange = NSMakeRange(0, 0);
21 void (^blk)() = ^{
22 previousRange = NSMakeRange(1, 0);
23 };
24}