diff options
Diffstat (limited to 'test/Parser/check-syntax-1.m')
-rw-r--r-- | test/Parser/check-syntax-1.m | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Parser/check-syntax-1.m b/test/Parser/check-syntax-1.m index a1999de..085ff4c 100644 --- a/test/Parser/check-syntax-1.m +++ b/test/Parser/check-syntax-1.m @@ -9,3 +9,13 @@ typedef float CGFloat; // expected-error {{ expected ';' after method prototype}} @end +// rdar: // 7822196 +@interface A +(void) x; // expected-error {{method type specifier must start with '-' or '+'}} \ + // expected-warning {{type specifier missing, defaults to 'int' [-Wimplicit-int]}} \ + // expected-error {{cannot declare variable inside @interface or @protocol}} +(int)im; // expected-error {{method type specifier must start with '-' or '+'}} \ +- ok; +@end + + |