URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc.dg/] [attributes/] [class-attribute-2.m] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ #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" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log