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

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

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