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