method-8.mm

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

MM
32
字号
/* APPLE LOCAL file mainline *//* 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 "previously defined here" } */- (int) meth1 { return 0; } /* { dg-error "redefinition of" } */@end@interface class4+ (void) meth1;@end@implementation class4+ (void) meth1 {} /* { dg-error "previously defined here" } */+ (void) meth1 {} /* { dg-error "redefinition of" } */@end

⌨️ 快捷键说明

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