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