mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 09:06:07 +00:00

This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d. This commit wasn't reviewed ahead of time and significant concerns were raised immediately after it landed. According to our developer policy this warrants immediate revert of the commit. https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy Differential Revision: https://reviews.llvm.org/D155509
24 lines
1023 B
Objective-C
24 lines
1023 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
|
|
// rdar://10633434
|
|
|
|
@interface testClass
|
|
@end
|
|
|
|
@class NSArray;
|
|
|
|
@implementation testClass
|
|
|
|
static NSArray* prefixArray[] = @"BEGIN:", @"END:", @"VERSION:", @"N:", @"FN:", @"TEL;", @"TEL:", nil; // expected-error {{array initializer must be an initializer list}} \
|
|
// expected-error {{expected identifier or '('}} \
|
|
// expected-error {{expected ';' after top level declarator}}
|
|
|
|
static NSString* prefixArray1[] = @"BEGIN:", @"END:", @"VERSION:", @"N:", @"FN:", @"TEL;", @"TEL:", nil; // expected-error {{unknown type name 'NSString'}} \
|
|
// expected-error {{expected identifier or '('}} \
|
|
// expected-error {{expected ';' after top level declarator}}
|
|
|
|
static char* cArray[] = "BEGIN:", "END"; // expected-error {{array initializer must be an initializer list}} \
|
|
// expected-error {{expected identifier or '('}} \
|
|
// expected-error {{expected ';' after top level declarator}}
|
|
|
|
@end
|