blob: d98e9bab6da9d61dd8e154aeb6ce7c2a3be5335c [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fnext-runtime --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}