[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Rewriter / rewrite-modern-typeof.mm
blob91e0b62fd588c5f7258ed9e01e8120a12ff2ab6c
1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp
2 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s
3 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -Wno-attributes -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
5 typedef unsigned long size_t;
6 extern "C" {
7 extern "C" void *_Block_copy(const void *aBlock);
8 extern "C" void _Block_release(const void *aBlock);
11 int main() {
12     __attribute__((__blocks__(byref))) int a = 42;
13     int save_a = a;
15     void (^b)(void) = ^{
16         ((__typeof(^{ a = 2; }))_Block_copy((const void *)(^{ a = 2; })));
17     };
19     ((__typeof(b))_Block_copy((const void *)(b)));
21     return 0;
24 // CHECK-LP: ((void (^)(void))_Block_copy((const void *)(b)))
26 // radar 7628153
27 void f() {
28         int a;  
29         __typeof__(a) aVal = a;
30         char *a1t = (char *)@encode(__typeof__(a));
31         __typeof__(aVal) bVal;
32         char *a2t = (char *)@encode(__typeof__(bVal));
33         __typeof__(bVal) cVal = bVal;
34         char *a3t = (char *)@encode(__typeof__(cVal));
38 // rdar://11239324
39 void x() {
40     id y;
41     void (^z)() = ^{ };
42     y = (id)((__typeof(z))_Block_copy((const void *)(z)));
45 // CHECK-LP: int aVal =  a;
47 // CHECK-LP: int bVal;