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