summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/class-getter-using-dotsyntax.m
blob: dd384b5108336aafd4be35e648e5dffa4ac21e25 (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
31
32
33
34
35
36
37
38
39
40
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
// expected-no-diagnostics

typedef struct objc_class *Class;

struct objc_class {
    Class isa;
};

typedef struct objc_object {
    Class isa;
} *id;

@interface XCActivityLogSection 
+ (unsigned)serializationFormatVersion;
+ (unsigned)sectionByDeserializingData;
+ (Class)retursClass;
@end

@implementation XCActivityLogSection

+ (unsigned)serializationFormatVersion
{

    return 0;
}
+ (unsigned)sectionByDeserializingData {
    unsigned version;
    return self.serializationFormatVersion;
}

+ (Class)retursClass {
    Class version;
    // FIXIT. (*version).isa does not work. Results in compiler error.
    return version->isa;
}

@end