/* { dg-do compile } */ #include #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("no dep_categ"))) @interface obj (dep_categ) /* { dg-warning "category attributes are not available in this version" } */ - (int) depmth; @end __attribute__ ((deprecated)) @implementation obj (dep_categ) /* { dg-warning "prefix attributes are ignored before" } */ - (int) depmth { return var + 1; } @end int foo (void) { obj *p = [obj new]; int q = [p depmth]; return [p mth]; }