summaryrefslogtreecommitdiff
path: root/test/CodeGenObjCXX/property-derived-to-base-conv.mm
blob: 5784f2be9cecc9588460eeded8d8ea958279656b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: %clang_cc1 -fobjc-gc -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -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;
}