blob: 7d3f7c70bb521020a7915638d71d0e262df9d115 (
about) (
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
27
28
29
30
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
@interface B
+(int) classGetter;
-(int) getter;
@end
@interface A : B
@end
@implementation A
+(int) classGetter {
return 0;
}
+(int) classGetter2 {
return super.classGetter;
}
-(void) method {
int x = super.getter;
}
@end
void f0() {
// FIXME: not implemented yet.
//int l1 = A.classGetter;
int l2 = [A classGetter2];
}
|