blob: f22b0517735d33cb7cc9e81325b2909ec835d934 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +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}