URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc.dg/] [attributes/] [categ-attribute-1.m] - Rev 704
Compare with Previous | Blame | View Log
/* { dg-do compile } */ #include <objc/objc.h> #include "../../objc-obj-c++-shared/TestsuiteObject.h" @interface obj : TestsuiteObject { @public int var; } - (int) mth; @end @implementation obj - (int) mth { return var; } @end __attribute ((deprecated)) @interface obj (dep_categ) - (int) depmth;/* { dg-warning "category attributes are not available in this version" } */ @end @implementation obj (dep_categ) - (int) depmth { return var + 1; } @end int foo (void) { obj *p = [obj new]; int q = [p depmth]; return [p mth]; }