blob: 098818be3cb0d94201bd611b98b2bf1221dea8b3 [file] [log] [blame]
Sean Callanan967d4382017-09-27 19:57:58 +00001// 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}