1 // RUN: rm -rf %t 2 // RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fauto-module-import -I %S/Inputs/normal-module-map -verify %s 3 4 #include "a1.h" 5 #include "b1.h" 6 #include "nested/nested2.h" 7 8 int test() { 9 return a1 + b1 + nested2; 10 } 11