brintos

brintos / llvm-project-archived public Read only

0
0
Text · 539 B · e151a64 Raw
14 lines · plain
1// RUN: %clang_cc1 -emit-pch -x objective-c-header -o %t1 %S/Inputs/chain-remap-types1.h2// RUN: %clang_cc1 -emit-pch -x objective-c-header -o %t2 %S/Inputs/chain-remap-types2.h -include-pch %t13// RUN: %clang_cc1 -include-pch %t2 -fsyntax-only -verify %s4// RUN: %clang_cc1 -ast-print -include-pch %t2 %s | FileCheck %s5// expected-no-diagnostics6 7// CHECK: @class X;8// CHECK: struct Y 9// CHECK: @property(atomic, assign, unsafe_unretained, readwrite) X *prop10// CHECK: void h(X *);11// CHECK: @interface X(Blah)12// CHECK: void g(X *);13 14