view clang/test/Parser/check-syntax-1.m @ 222:81f6424ef0e3 llvm-original

LLVM original branch
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 18 Jul 2021 22:10:01 +0900
parents 1d019706d866
children
line wrap: on
line source

// 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