2012-04-10 02:58:55 +08:00
|
|
|
// RUN: %clang -fsyntax-only -fno-objc-default-synthesize-properties -fobjc-default-synthesize-properties %s 2>&1 | FileCheck %s
|
2012-04-10 02:20:28 +08:00
|
|
|
|
|
|
|
@interface I
|
|
|
|
@property int P;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation I
|
|
|
|
@end
|
|
|
|
// CHECK: warning: argument unused during compilation: '-fno-objc-default-synthesize-properties'
|
2012-04-10 02:58:55 +08:00
|
|
|
// CHECK: warning: argument unused during compilation: '-fobjc-default-synthesize-properties'
|