aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/method-18.mm
blob: 411caac111ad283318ec7431a18ce6905a4e8097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* 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