xref: /llvm-project/clang/test/CodeGenObjC/property-getter-dot-syntax.m (revision 46b0d0eef9e0a7290851cce0d44002b750584f1b)
1// RUN: %clang_cc1 -emit-llvm -o %t %s
2
3@protocol NSObject
4- (void *)description;
5@end
6
7int main(void)
8{
9        id<NSObject> eggs;
10        void *eggsText= eggs.description;
11}
12