URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc.dg/] [attributes/] [method-attribute-3.m] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ #include "../../objc-obj-c++-shared/TestsuiteObject.h" @interface obj : TestsuiteObject { @public int var; } - (int) vargsn: (int) count, ... __attribute__((deprecated)); @end @implementation obj - (int) vargsn: (int) count, ... { return 0; } @end int foo (void) { obj *p = [obj new]; return [p vargsn:0]; /* { dg-warning "'vargsn:' is deprecated .declared at " } */ }
Go to most recent revision | Compare with Previous | Blame | View Log