* obj-c++.dg/bitfield-[1-5].mm: New. * obj-c++.dg/class-protocol-1.mm: New. * obj-c++.dg/comp-types-1[0-1].mm: New. * obj-c++.dg/comp-types-[2-9].mm: New. * obj-c++.dg/encode-[4-8].mm: New. * obj-c++.dg/layout-1.mm: New. * obj-c++.dg/method-1[0-9].mm: New. * obj-c++.dg/method-2[0-1].mm: New. * obj-c++.dg/method-[8-9].mm: New. * obj-c++.dg/objc-gc-3.mm: New. * obj-c++.dg/try-catch-10.mm: New. * objc.dg/bitfield-5.m: New. * objc.dg/comp-types-10.m: New. * objc.dg/comp-types-9.m: New. * objc.dg/layout-1.m: New. * objc.dg/objc-gc-4.m: New. * objc.dg/try-catch-9.m: New. * objc.dg/class-protocol-1.m: Tweak diagnostics. * objc.dg/comp-types-1.m: Likewise. * objc.dg/comp-types-[5-6].m: Likewise. * objc.dg/method-9.m: Likewise. From-SVN: r100121
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
|