blob: f8137ffb4c4b064c70c0f94b4fc48674a6a38476 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-additional-options "-Wno-objc-root-class" } */
#include <objc/objc.h>
__attribute__ ((deprecated))
@interface DeprecatedClass
{
Class isa;
}
+ (id) new;
@end
__attribute__ ((deprecated))
@implementation DeprecatedClass /* { dg-warning "prefix attributes are ignored for implementations" } */
+ (id) new { return nil; }
@end
void function (void)
{
DeprecatedClass *object = [DeprecatedClass new]; /* { dg-warning "is deprecated" } */
}