blob: f22b0517735d33cb7cc9e81325b2909ec835d934 [file] [log] [blame]
Shih-wei Liaoea285162010-06-04 12:34:56 -07001// RUN: %clang_cc1 -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}