freebsd-nq/test/CodeGenObjC/property-getter-dot-syntax.m

12 lines
172 B
Mathematica
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -emit-llvm -o %t %s
2009-06-02 17:58:47 +00:00
@protocol NSObject
- (void *)description;
@end
int main()
{
id<NSObject> eggs;
void *eggsText= eggs.description;
}