2011-07-06 08:26:06 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -fsyntax-only -fobjc-arc -x objective-c %s.result
|
2011-06-17 01:28:31 +08:00
|
|
|
// RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fobjc-nonfragile-abi -fsyntax-only %s > %t
|
2011-06-16 07:25:17 +08:00
|
|
|
// RUN: diff %t %s.result
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
|
|
|
|
@interface Foo : NSObject {
|
|
|
|
NSObject *x;
|
|
|
|
}
|
|
|
|
@property (readonly,assign) id x;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Foo
|
|
|
|
@synthesize x;
|
|
|
|
@end
|