aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/obj-c++.dg/method-18.mm
blob: 1035553dcc447c6aac8bba138b74cb393fa074b3 (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
26
/* APPLE LOCAL file mainline */
/* 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