blob: 494fd5fe66915c9b7abae35061c5f9b5ace57c59 [file] [log] [blame]
/* APPLE LOCAL file radar 5424416 */
/* Methods cannot return an array. */
int v[2];
@interface Foo
-(int[2])x;
@end
@implementation Foo
-(int[2])x /* { dg-error "\'x\' declared as method returning an array" } */
{
return v; /* { dg-error "cannot convert" } */
}
@end