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 %s -verify 3 #include "Umbrella/umbrella_sub.h" 4 5 int getUmbrella() { 6 return umbrella + umbrella_sub; 7 } 8 9 __import_module__ Umbrella2; 10 11 #include "a1.h" 12 #include "b1.h" 13 #include "nested/nested2.h" 14 15 int test() { 16 return a1 + b1 + nested2; 17 } 18