mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
11 lines
415 B
Objective-C
11 lines
415 B
Objective-C
// 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
|
|
|