1// RUN: clang-import-test -x objective-c++ -import %S/Inputs/S1.m --import %S/Inputs/S2.m --import %S/Inputs/S3.m -expression %s
2void expr() {
3  MyClass *c = [MyClass fromInteger:3];
4  const int i = [c getInteger];
5  const int j = c->j;
6}
7