1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -Werror -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -U__declspec -D"__declspec(X)=" %t-rw.cpp
4 typedef unsigned long size_t;
13 __block CFUUIDBytes bytes;
25 // rewriting multiple __block decls on wintin same decl stmt.
29 __block float FLOAT1, FT2, FFFFFFFF3,
32 __block void (^B)(), (^BB)();
35 // rewriting multiple __block decls on wintin same decl stmt
37 int rdar7547630(const char *keybuf, const char *valuebuf) {
38 __block int BI1 = 1, BI2 = 2;
40 double __block BYREFVAR = 1.34, BYREFVAR_NO_INIT, BYREFVAR2 = 1.37;
42 __block const char *keys = keybuf, *values = valuebuf, *novalues;
52 z w(int loc, int len);
54 @interface rdar11326988
56 @implementation rdar11326988
57 - (void)y:(int)options {
58 __attribute__((__blocks__(byref))) z firstRange = w(1, 0);
63 int Test18799145() { return ^(){return 0;}(); }