1*f4a2713aSLionel Sambuc// RUN: not %clang -fsyntax-only -fno-objc-default-synthesize-properties -fobjc-default-synthesize-properties %s 2>&1 | FileCheck %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc@interface I 4*f4a2713aSLionel Sambuc@property int P; 5*f4a2713aSLionel Sambuc@end 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc@implementation I 8*f4a2713aSLionel Sambuc@end 9*f4a2713aSLionel Sambuc// CHECK: error: unknown argument: '-fno-objc-default-synthesize-properties' 10*f4a2713aSLionel Sambuc// CHECK: error: unknown argument: '-fobjc-default-synthesize-properties' 11