Also add 'system-zos' as a lit feature and use it where needed. Part of the project to eliminate special handling for triples in lit expressions. Differential Revision: https://reviews.llvm.org/D139444
8 lines
304 B
Objective-C
8 lines
304 B
Objective-C
// UNSUPPORTED: target={{.*}}-zos{{.*}}, target={{.*}}-aix{{.*}}
|
|
// RUN: clang-import-test -x objective-c++ -import %S/Inputs/S1.m --import %S/Inputs/S2.m --import %S/Inputs/S3.m -expression %s
|
|
void expr() {
|
|
MyClass *c = [MyClass fromInteger:3];
|
|
const int i = [c getInteger];
|
|
const int j = c->j;
|
|
}
|