Home | History | Annotate | Download | only in Modules
      1 // RUN: rm -rf %t
      2 // RUN: %clang_cc1 -x objective-c -Wauto-import -fmodule-cache-path %t -fmodules -F %S/Inputs %s -verify
      3 
      4 @__experimental_modules_import Module.Sub;
      5 
      6 void test_Module_Sub() {
      7   int *ip = Module_Sub;
      8 }
      9 
     10 @__experimental_modules_import Module.Buried.Treasure;
     11 
     12 void dig() {
     13   unsigned *up = Buried_Treasure;
     14 }
     15 
     16