YouCompleteMe/cpp/llvm/tools/clang/test/CodeGenObjCXX/property-derived-to-base-conv.mm
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

26 lines
400 B
Plaintext

// RUN: %clang_cc1 -fobjc-gc -triple x86_64-apple-darwin10 -fobjc-fragile-abi -emit-llvm -o - %s
// rdar: // 7501812
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;
}