| /* APPLE LOCAL file radar 3803157 */ |
| /* Test implementaion of attributes on methods. */ |
| - (int) foo1: (int)arg1 __attribute__((deprecated)); |
| - (int) foo2: (int)arg1 __attribute__((deprecated)) __attribute__((unavailable)); |
| - (int) foo: (int)arg1 __attribute__((deprecated)){ |
| /* { dg-warning "method attribute may be specified" "" { target *-*-* } 14 } */ |
| - (int) foo1: (int)arg1 { |
| - (int) foo2: (int)arg1 __attribute__((deprecated)) { |
| /* { dg-warning "method attribute may be specified" "" { target *-*-* } 21 } */ |
| [p foo1:2]; /* { dg-warning "\\'foo1:\\' is deprecated" } */ |
| [p foo2:2]; /* { dg-warning "\\'foo2:\\' is deprecated" } */ |
| /* { dg-warning "\\'foo2:\\' is unavailable" "" { target *-*-* } 31 } */ |