blob: 908a4785e8e4063a6fe1e5770f179bc21be0d74d [file] [log] [blame]
// RUN: rm -rf %t
// RUN: %clang_cc1 -Wauto-import -fmodule-cache-path %t -fmodules -F %S/Inputs %s -verify
// Note: transitively imports Module.Sub2.
@import Module.Sub;
int getValue() {
return *Module_Sub + *Module_Sub2;
}