blob: f183b1f94c03d57127680a5322a5b9ac94c7be03 [file] [log] [blame]
Douglas Gregora6b00fc2013-01-23 22:38:11 +00001// RUN: rm -rf %t
Douglas Gregorf575d6e2013-01-25 00:45:27 +00002// RUN: %clang_cc1 -Wauto-import -fmodule-cache-path %t -fdisable-module-hash -fmodules -fmodules-global-index -F %S/Inputs %s -verify
Douglas Gregora6b00fc2013-01-23 22:38:11 +00003// RUN: ls %t|grep modules.idx
Douglas Gregorf575d6e2013-01-25 00:45:27 +00004// RUN: %clang_cc1 -Wauto-import -fmodule-cache-path %t -fdisable-module-hash -fmodules -fmodules-global-index -F %S/Inputs %s -verify
5// REQUIRES: shell
Douglas Gregora6b00fc2013-01-23 22:38:11 +00006
7// expected-no-diagnostics
8@import DependsOnModule;
Douglas Gregorf575d6e2013-01-25 00:45:27 +00009@import Module;
Douglas Gregora6b00fc2013-01-23 22:38:11 +000010
Douglas Gregorf575d6e2013-01-25 00:45:27 +000011int *get_sub() {
12 return Module_Sub;
13}