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

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

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