summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjCXX/property-derived-to-base-conv.mm
blob: ada1202848a8fde5232029e58d2537fa20d6c004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 -fobjc-gc -triple x86_64-apple-darwin10 -emit-llvm -o - %s
// rdar: // 7501812

struct A { int member; };
struct B : A { };

@interface BInt {
@private
  B *b;
}
- (B)value;
- (void)setValue : (B) arg;
@property B value;
@end

void g(BInt *bint) {
  bint.value.member = 17;
}

OpenPOWER on IntegriCloud