blob: 4a98de13099599cbb0905e8aa4a32df834227bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* { 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];
}
|