blob: 1f59aef35b2acc61adf6a3b2ad9dbe050910d39a [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))
@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];
}