brintos

brintos / llvm-project-archived public Read only

0
0
Text · 176 B · d5875a3 Raw
12 lines · plain
1// RUN: %clang_cc1 -emit-llvm -o %t %s2 3@protocol NSObject4- (void *)description;5@end6 7int main(void)8{9        id<NSObject> eggs;10        void *eggsText= eggs.description;11}12