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