bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
26 lines
414 B
Plaintext
26 lines
414 B
Plaintext
/* Contributed by Igor Seleznev <selez@mail.ru>. */
|
|
/* This used to be broken. */
|
|
|
|
#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
|