summaryrefslogtreecommitdiff
path: root/test/Driver/no-objc-default-synthesize-properties.m
blob: a034926a9e2fbbb4d8fcefa238c84b8950a7e68e (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: not %clang  -fsyntax-only -fno-objc-default-synthesize-properties -fobjc-default-synthesize-properties %s 2>&1 | FileCheck %s

@interface I
@property int P;
@end

@implementation I
@end
// CHECK: error: unknown argument: '-fno-objc-default-synthesize-properties'
// CHECK: error: unknown argument: '-fobjc-default-synthesize-properties'