summaryrefslogtreecommitdiffstats
path: root/clang/test/ARCMT/GC-check.m
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/ARCMT/GC-check.m')
-rw-r--r--clang/test/ARCMT/GC-check.m11
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/test/ARCMT/GC-check.m b/clang/test/ARCMT/GC-check.m
new file mode 100644
index 00000000000..0d5e878d761
--- /dev/null
+++ b/clang/test/ARCMT/GC-check.m
@@ -0,0 +1,11 @@
+// RUN: %clang_cc1 -arcmt-check -verify -triple x86_64-apple-darwin10 -fobjc-gc-only %s
+// RUN: %clang_cc1 -arcmt-check -verify -triple x86_64-apple-darwin10 -fobjc-gc-only -x objective-c++ %s
+
+#define CF_AUTOMATED_REFCOUNT_UNAVAILABLE __attribute__((unavailable("not available in automatic reference counting mode")))
+typedef const void * CFTypeRef;
+CFTypeRef CFMakeCollectable(CFTypeRef cf) CF_AUTOMATED_REFCOUNT_UNAVAILABLE; // expected-note {{unavailable}}
+
+void test1(CFTypeRef *cft) {
+ CFTypeRef c = CFMakeCollectable(cft); // expected-error {{CFMakeCollectable will leak the object that it receives in ARC}} \
+ // expected-error {{unavailable}}
+}
OpenPOWER on IntegriCloud