xref: /minix3/external/bsd/llvm/dist/clang/test/Driver/no-objc-default-synthesize-properties.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
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