hanchenye-llvm-project/clang/test/Parser/check-syntax-1.m

12 lines
413 B
Objective-C

// RUN: clang-cc -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