blob: 962862b53660c35d052771555ccd6ef16d02f9c1 [file] [log] [blame]
Fariborz Jahanian391d8952008-12-10 00:21:50 +00001// RUN: clang -fnext-runtime --emit-llvm -o %t %s
2
3@protocol NSObject
4- (void *)description;
5@end
6
7int main()
8{
9 id<NSObject> eggs;
10 void *eggsText= eggs.description;
11}