summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenObjC/property-getter-dot-syntax.m
blob: 962862b53660c35d052771555ccd6ef16d02f9c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: clang -fnext-runtime --emit-llvm -o %t %s

@protocol NSObject
- (void *)description;
@end

int main()
{
        id<NSObject> eggs;
        void *eggsText= eggs.description;
}
OpenPOWER on IntegriCloud