blob: 9864354228be00434af351d2b4d3abfb91c6cccb [file] [log] [blame]
Argyrios Kyrtzidis81eecde2011-11-04 15:58:17 +00001// RUN: %clang_cc1 -arcmt-check -verify -triple x86_64-apple-darwin10 -fobjc-gc-only %s
2// RUN: %clang_cc1 -arcmt-check -verify -triple x86_64-apple-darwin10 -fobjc-gc-only -x objective-c++ %s
3
4#define CF_AUTOMATED_REFCOUNT_UNAVAILABLE __attribute__((unavailable("not available in automatic reference counting mode")))
Argyrios Kyrtzidis1fe42032011-11-04 23:43:03 +00005typedef unsigned NSUInteger;
Argyrios Kyrtzidis81eecde2011-11-04 15:58:17 +00006typedef const void * CFTypeRef;
7CFTypeRef CFMakeCollectable(CFTypeRef cf) CF_AUTOMATED_REFCOUNT_UNAVAILABLE; // expected-note {{unavailable}}
Argyrios Kyrtzidis1fe42032011-11-04 23:43:03 +00008void *__strong NSAllocateCollectable(NSUInteger size, NSUInteger options);
Argyrios Kyrtzidis81eecde2011-11-04 15:58:17 +00009
10void test1(CFTypeRef *cft) {
11 CFTypeRef c = CFMakeCollectable(cft); // expected-error {{CFMakeCollectable will leak the object that it receives in ARC}} \
12 // expected-error {{unavailable}}
Argyrios Kyrtzidis1fe42032011-11-04 23:43:03 +000013 NSAllocateCollectable(100, 0); // expected-error {{call returns pointer to GC managed memory; it will become unmanaged in ARC}}
Argyrios Kyrtzidis81eecde2011-11-04 15:58:17 +000014}
Argyrios Kyrtzidis280b4ad2011-11-06 18:58:23 +000015
16@interface I1 {
17 __strong void *gcVar; // expected-error {{GC managed memory will become unmanaged in ARC}}
18}
19@end;