diff options
Diffstat (limited to 'clang/test/ARCMT/assign-prop-no-arc-runtime.m')
| -rw-r--r-- | clang/test/ARCMT/assign-prop-no-arc-runtime.m | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/clang/test/ARCMT/assign-prop-no-arc-runtime.m b/clang/test/ARCMT/assign-prop-no-arc-runtime.m new file mode 100644 index 00000000000..07a5b40b6fa --- /dev/null +++ b/clang/test/ARCMT/assign-prop-no-arc-runtime.m @@ -0,0 +1,19 @@ +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -fsyntax-only -fobjc-arc -fobjc-no-arc-runtime -x objective-c %s.result +// RUN: arcmt-test --args -arch x86_64 %s -D__IPHONE_OS_VERSION_MIN_REQUIRED=40300 > %t +// RUN: diff %t %s.result +// RUN: arcmt-test --args -arch x86_64 %s -miphoneos-version-min=4.3 > %t +// RUN: diff %t %s.result +// RUN: arcmt-test --args -arch x86_64 %s -mmacosx-version-min=10.6 > %t +// RUN: diff %t %s.result + +#include "Common.h" + +@interface Foo : NSObject { + NSObject *x; +} +@property (readonly,assign) id x; +@end + +@implementation Foo +@synthesize x; +@end |

