mirror of
https://github.com/intel/llvm.git
synced 2026-01-25 10:55:58 +08:00
12 lines
171 B
Objective-C
12 lines
171 B
Objective-C
// RUN: clang-cc --emit-llvm -o %t %s
|
|
|
|
@protocol NSObject
|
|
- (void *)description;
|
|
@end
|
|
|
|
int main()
|
|
{
|
|
id<NSObject> eggs;
|
|
void *eggsText= eggs.description;
|
|
}
|