2013-01-24 06:38:11 +08:00
|
|
|
// RUN: rm -rf %t
|
2013-01-25 08:45:27 +08:00
|
|
|
// RUN: %clang_cc1 -Wauto-import -fmodule-cache-path %t -fdisable-module-hash -fmodules -fmodules-global-index -F %S/Inputs %s -verify
|
2013-01-24 06:38:11 +08:00
|
|
|
// RUN: ls %t|grep modules.idx
|
2013-01-25 08:45:27 +08:00
|
|
|
// RUN: %clang_cc1 -Wauto-import -fmodule-cache-path %t -fdisable-module-hash -fmodules -fmodules-global-index -F %S/Inputs %s -verify
|
|
|
|
// REQUIRES: shell
|
2013-01-24 06:38:11 +08:00
|
|
|
|
|
|
|
// expected-no-diagnostics
|
|
|
|
@import DependsOnModule;
|
2013-01-25 08:45:27 +08:00
|
|
|
@import Module;
|
2013-01-24 06:38:11 +08:00
|
|
|
|
2013-01-25 08:45:27 +08:00
|
|
|
int *get_sub() {
|
|
|
|
return Module_Sub;
|
|
|
|
}
|