llvm-project/clang/test/SemaObjC/severe-syntax-error.m
Aaron Ballman d618f1c3b1 Remove rdar links; NFC
This removes links to rdar, which is an internal bug tracker that the
community doesn't have visibility into.

See further discussion at:
https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
2023-07-07 08:41:11 -04:00

23 lines
1004 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
@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