[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Lexer / has_feature_objc_arc.m
blobd5c8493daa7b2adff1779427c18e1bfe46bb1638
1 // RUN: %clang_cc1 -E %s -fobjc-arc "-triple" "x86_64-apple-macosx10.7.0"  -fobjc-runtime-has-weak | FileCheck --check-prefix=CHECK-ARC %s
2 // RUN: %clang_cc1 -E %s -fobjc-arc "-triple" "x86_64-apple-macosx10.6.0" | FileCheck --check-prefix=CHECK-ARCLITE %s
4 #if __has_feature(objc_arc)
5 void has_objc_arc_feature();
6 #else
7 void no_objc_arc_feature();
8 #endif
10 #if __has_feature(objc_arc_weak)
11 void has_objc_arc_weak_feature();
12 #else
13 void no_objc_arc_weak_feature();
14 #endif
16 #if __has_feature(objc_arc_fields)
17 void has_objc_arc_fields();
18 #else
19 void no_objc_arc_fields();
20 #endif
22 // CHECK-ARC: void has_objc_arc_feature();
23 // CHECK-ARC: void has_objc_arc_weak_feature();
24 // CHECK-ARC: void has_objc_arc_fields();
26 // CHECK-ARCLITE: void has_objc_arc_feature();
27 // CHECK-ARCLITE: void no_objc_arc_weak_feature();
28 // CHECK-ARCLITE: void has_objc_arc_fields();