blob: 962862b53660c35d052771555ccd6ef16d02f9c1 [file] [log] [blame]
// RUN: clang -fnext-runtime --emit-llvm -o %t %s
@protocol NSObject
- (void *)description;
@end
int main()
{
id<NSObject> eggs;
void *eggsText= eggs.description;
}