[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Rewriter / rewrite-modern-typeof.mm
blob6136563e1f0bfbd995a1f3a48c366c1a9ac782fb
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 void f() {
27         int a;  
28         __typeof__(a) aVal = a;
29         char *a1t = (char *)@encode(__typeof__(a));
30         __typeof__(aVal) bVal;
31         char *a2t = (char *)@encode(__typeof__(bVal));
32         __typeof__(bVal) cVal = bVal;
33         char *a3t = (char *)@encode(__typeof__(cVal));
37 void x() {
38     id y;
39     void (^z)() = ^{ };
40     y = (id)((__typeof(z))_Block_copy((const void *)(z)));
43 // CHECK-LP: int aVal =  a;
45 // CHECK-LP: int bVal;