forked from OSchip/llvm-project
21 lines
694 B
Plaintext
21 lines
694 B
Plaintext
![]() |
// RUN: rm -rf %t
|
||
|
// RUN: %clang_cc1 -objcmt-migrate-literals -objcmt-migrate-subscripting -mt-migrate-directory %t %s -x objective-c -fobjc-runtime-has-weak -fobjc-arc -fobjc-default-synthesize-properties -triple x86_64-apple-darwin11
|
||
|
// RUN: c-arcmt-test -mt-migrate-directory %t | arcmt-test -verify-transformed-files %s.result
|
||
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc -fobjc-default-synthesize-properties %s.result
|
||
|
|
||
|
@class NSString;
|
||
|
@interface NSObject @end
|
||
|
|
||
|
@interface I : NSObject {
|
||
|
int ivarVal;
|
||
|
}
|
||
|
|
||
|
@property(weak) NSString *__weak WeakProp;
|
||
|
|
||
|
@property(strong) NSString * StrongProp;
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation I
|
||
|
@end
|