method-1.m

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· M 代码 · 共 31 行

M
31
字号
/* Tests of duplication.  *//* { dg-do compile } */@interface class1- (int) meth1;- (void) meth1;  /* { dg-error "duplicate declaration of method .\\-meth1." } */@end@interface class2+ (void) meth1;+ (int) meth1;  /* { dg-error "duplicate declaration of method .\\+meth1." } */@end@interface class3- (int) meth1;@end@implementation class3- (int) meth1 { return 0; } /* { dg-error "previous definition" } */- (int) meth1 { return 0; } /* { dg-error "redefinition of" } */@end@interface class4+ (void) meth1;@end@implementation class4+ (void) meth1 {} /* { dg-error "previous definition" } */+ (void) meth1 {} /* { dg-error "redefinition of" } */@end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?