property-getter-dot-syntax.m 172 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 // RUN: %clang_cc1 -emit-llvm -o %t %s @protocol NSObject - (void *)description; @end int main() { id<NSObject> eggs; void *eggsText= eggs.description; }