blob: c1cc5e994774f7e18c0321185ea85b157287fd71 [file] [log] [blame]
Daniel Dunbarc5a97ec2009-11-17 07:07:28 +00001// RUN: clang-cc --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}