implement some more FIXMEs, by rejecting more bogus stuff in
objc mode.
llvm-svn: 58216
diff --git a/clang/test/Parser/objc-init.m b/clang/test/Parser/objc-init.m
index 4478665..085db72 100644
--- a/clang/test/Parser/objc-init.m
+++ b/clang/test/Parser/objc-init.m
@@ -1,4 +1,4 @@
-// RUN: clang -fsyntax-only -verify %s
+// RUN: clang -fsyntax-only -verify %s -pedantic
// rdar://5707001
@interface NSNumber;
@@ -6,6 +6,10 @@
- (unsigned) METH2;
@end
+struct SomeStruct {
+ int x, y, z, q;
+};
+
void test1() {
id objects[] = {[NSNumber METH]};
}
@@ -24,3 +28,14 @@
unsigned x[] = {[NSNumber METH2]+2};
}
+void test5(NSNumber *x) {
+ unsigned y[] = {
+ [4][NSNumber METH2]+2, // expected-warning {{use of GNU 'missing =' extension in designator}}
+ [4][x METH2]+2 // expected-warning {{use of GNU 'missing =' extension in designator}}
+ };
+
+ struct SomeStruct z = {
+ .x = [x METH2], // ok.
+ .x [x METH2] // expected-error {{expected '=' or another designator}}
+ };
+}