bolt/deps/llvm-18.1.8/clang/test/CodeGenObjCXX/property-derived-to-base-conv.mm
2025-02-14 19:21:04 +01:00

24 lines
396 B
Text

// RUN: %clang_cc1 -fobjc-gc -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s
struct A {
int member;
void foo();
A *operator->();
};
struct B : A { };
@interface BInt {
@private
B *b;
}
- (B)value;
- (void)setValue : (B) arg;
@property B value;
@end
void g(BInt *bint) {
bint.value.foo();
bint.value->member = 17;
int x = bint.value.member;
}