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