1*67e74705SXin Li// RUN: rm -rf %t-mcp 2*67e74705SXin Li// RUN: %clang_cc1 -objcmt-migrate-subscripting -emit-pch -o %t.pch %s -isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -F %S/Inputs -fmodules -fimplicit-module-maps -fmodules-cache-path=%t-mcp -w 3*67e74705SXin Li// RUN: %clang_cc1 -objcmt-migrate-subscripting -include-pch %t.pch %s -migrate -o %t.remap -isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -F %S/Inputs -fmodules -fimplicit-module-maps -fmodules-cache-path=%t-mcp 4*67e74705SXin Li// REQUIRES: x86-registered-target 5*67e74705SXin Li#ifndef HEADER 6*67e74705SXin Li#define HEADER 7*67e74705SXin Li 8*67e74705SXin Li@import Module; 9*67e74705SXin Li 10*67e74705SXin Li#else 11*67e74705SXin Li 12*67e74705SXin Li#endif 13