1*67e74705SXin Li@import redeclarations_left; 2*67e74705SXin Li@import redeclarations_right; 3*67e74705SXin Li 4*67e74705SXin Li@interface MyObject : NSObject 5*67e74705SXin Li@end 6*67e74705SXin Li 7*67e74705SXin Li// RUN: rm -rf %t 8*67e74705SXin Li// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -emit-module -fmodule-name=redeclarations_left %S/Inputs/module.map 9*67e74705SXin Li// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -emit-module -fmodule-name=redeclarations_right %S/Inputs/module.map 10*67e74705SXin Li// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs %s -verify 11*67e74705SXin Li// expected-no-diagnostics 12*67e74705SXin Li 13