teak-llvm/clang/test/ARCMT/remove-dealloc-method.m.result
Fariborz Jahanian 9652adf2af arc migrator: replace "retain" attribute with "strong"
which have same semantics in mrr as well as arr.
// rdar://10688312

llvm-svn: 148559
2012-01-20 19:15:02 +00:00

21 lines
453 B
Plaintext

// 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 -x objective-c %s > %t
// RUN: diff %t %s.result
#define nil ((void*) 0)
@interface Foo
@property (strong) id x;
@property (strong) id y;
@property (strong) id w;
@property (strong) id z;
@end
@implementation Foo
@synthesize x;
@synthesize y;
@synthesize w;
@synthesize z;
@end