Fix a bogus objective-c warning with -pedantic.
(radar 7370882).
llvm-svn: 86291
diff --git a/clang/test/Parser/objc-init.m b/clang/test/Parser/objc-init.m
index a91ac9c..6d6b382 100644
--- a/clang/test/Parser/objc-init.m
+++ b/clang/test/Parser/objc-init.m
@@ -39,3 +39,21 @@
.x [x METH2] // expected-error {{expected '=' or another designator}}
};
}
+
+// rdar://7370882
+@interface SemicolonsAppDelegate
+{
+ id i;
+}
+@property (assign) id window;
+@end
+
+@implementation SemicolonsAppDelegate
+{
+ id i;
+}
+ @synthesize window;
+@end
+
+
+