blob: c753f33279d3fe7b1fd4a492daa2f3a9fd2eba03 [file] [log] [blame]
/* Contributed by Igor Seleznev <selez@mail.ru>. */
/* This used to be broken. */
// { dg-additional-options "-Wno-objc-root-class" }
#include <objc/objc.h>
@interface A
+ (A *)currentContext;
@end
@interface B
+ (B *)currentContext;
@end
int main()
{
[A currentContext]; /* { dg-bogus "multiple declarations" } */
return 0;
}
@implementation A
+ (A *)currentContext { return nil; }
@end
@implementation B
+ (B *)currentContext { return nil; }
@end