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