summaryrefslogtreecommitdiff
path: root/clang/test/Parser/check-syntax-1.m
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Parser/check-syntax-1.m')
-rw-r--r--clang/test/Parser/check-syntax-1.m19
1 files changed, 19 insertions, 0 deletions
diff --git a/clang/test/Parser/check-syntax-1.m b/clang/test/Parser/check-syntax-1.m
new file mode 100644
index 0000000..0ae0c5d
--- /dev/null
+++ b/clang/test/Parser/check-syntax-1.m
@@ -0,0 +1,19 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+int @interface bla ; // expected-error {{cannot combine with previous 'int' declaration specifier}}
+@end
+
+typedef float CGFloat;
+@interface XNSNumber
++ (XNSNumber *) numberWithCGFloat : (CGFloat) float; // expected-error {{expected identifier}} \
+ // expected-error {{expected ';' after method prototype}}
+@end
+
+// rdar: // 7822196
+@interface A
+(void) x; // expected-error {{method type specifier must start with '-' or '+'}}
+(int)im; // expected-error {{method type specifier must start with '-' or '+'}} \
+- ok;
+@end
+
+