[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / ARCMT / GC-check.m
blobe95e285432e0f03fb31b6bf04143a0e10ded9e0c
1 // RUN: %clang_cc1 -arcmt-action=check -verify -triple x86_64-apple-darwin10 -fobjc-gc-only %s
2 // RUN: %clang_cc1 -arcmt-action=check -verify -triple x86_64-apple-darwin10 -fobjc-gc-only -x objective-c++ %s
4 #define CF_AUTOMATED_REFCOUNT_UNAVAILABLE __attribute__((unavailable("not available in automatic reference counting mode")))
5 typedef unsigned NSUInteger;
6 typedef const void * CFTypeRef;
7 CFTypeRef CFMakeCollectable(CFTypeRef cf) CF_AUTOMATED_REFCOUNT_UNAVAILABLE; // expected-note {{unavailable}}
8 void *__strong NSAllocateCollectable(NSUInteger size, NSUInteger options);
10 void test1(CFTypeRef *cft) {
11   CFTypeRef c = CFMakeCollectable(cft); // expected-error {{CFMakeCollectable will leak the object that it receives in ARC}} \
12                 // expected-error {{unavailable}}
13   NSAllocateCollectable(100, 0); // expected-error {{call returns pointer to GC managed memory; it will become unmanaged in ARC}}
16 @interface I1 {
17   __strong void *gcVar; // expected-error {{GC managed memory will become unmanaged in ARC}}
19 @end;