2011-11-04 23:58:08 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -fobjc-arc -x objective-c %s.result
|
|
|
|
// RUN: arcmt-test --args -triple x86_64-apple-darwin10 -fsyntax-only -fobjc-gc-only -x objective-c %s > %t
|
|
|
|
// RUN: diff %t %s.result
|
2011-11-04 23:58:13 +08:00
|
|
|
// RUN: arcmt-test --args -triple x86_64-apple-darwin10 -fsyntax-only -fobjc-gc-only -x objective-c++ %s > %t
|
|
|
|
// RUN: diff %t %s.result
|
2011-11-04 23:58:08 +08:00
|
|
|
|
|
|
|
#include "Common.h"
|
2011-11-07 02:58:17 +08:00
|
|
|
#include "GC.h"
|
2011-11-04 23:58:08 +08:00
|
|
|
|
|
|
|
void test1(CFTypeRef *cft) {
|
|
|
|
id x = CFBridgingRelease(cft);
|
|
|
|
}
|
2011-11-04 23:58:22 +08:00
|
|
|
|
2011-11-07 02:58:17 +08:00
|
|
|
@interface I1 {
|
|
|
|
I1 *myivar;
|
|
|
|
}
|
2011-11-04 23:58:22 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation I1
|
|
|
|
-(void)dealloc {
|
|
|
|
// dealloc
|
|
|
|
test1(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface I2
|
|
|
|
@property id prop;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation I2
|
|
|
|
@synthesize prop;
|
|
|
|
|
|
|
|
-(void)dealloc {
|
|
|
|
// finalize
|
|
|
|
test1(0);
|
|
|
|
}
|
|
|
|
@end
|