[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Import / forward-declared-objc-class / test.m
blobc94c677dcef6a1a0235e25289ae743318891f91f
1 // UNSUPPORTED: target={{.*}}-zos{{.*}}, target={{.*}}-aix{{.*}}
2 // RUN: clang-import-test -x objective-c++ -import %S/Inputs/S1.m --import %S/Inputs/S2.m --import %S/Inputs/S3.m -expression %s
3 void expr() {
4   MyClass *c = [MyClass fromInteger:3];
5   const int i = [c getInteger];
6   const int j = c->j;