blob: 3f4040e41cd94faeb4fef6bf5869847e2c70f103 [file] [log] [blame]
/* APPLE LOCAL file deprecated use in deprecated 6425499 */
__attribute__((deprecated))
void depFunc1() {}
__attribute__((deprecated))
void depFunc2() { depFunc1(); }
__attribute__((objc_root_class)) @interface Foo
-(void)deprecatedMethod1 __attribute__((deprecated));
-(void)deprecatedMethod2 __attribute__((deprecated));
@end
@implementation Foo
-(void)deprecatedMethod1 {
}
-(void)deprecatedMethod2 {
depFunc1();
[self deprecatedMethod1];
}
@end