/* { dg-do compile } */

#include <objc/objc.h>
#include "../../objc-obj-c++-shared/Object1.h"

@interface obj : Object { 
@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];    
}