blob: ffe0977c9bd18e56f490f2eb2b20fea37c5d4040 [file] [log] [blame]
/* APPLE LOCAL file radar 6261630 */
/* Test use of trailing attribute in a method return type. */
/* { dg-options "-fobjc-gc" } */
/* { dg-do compile { target *-*-darwin* } } */
@interface INTF
- (const char * __attribute__((objc_gc(strong))))encoding;
- (id __strong)encoding1;
- (const char * __weak)encoding2;
- (const char ** __strong)encoding3;
@end