blob: e5a050f0f425690741f96664844b01bd0c52f86d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: rm -rf %t
// RUN: %clang_cc1 -Wauto-import -fmodule-cache-path %t -fauto-module-import -F %S/Inputs %s -verify
// Note: transitively imports Module.Sub2.
__import_module__ Module.Sub;
int getValue() {
return *Module_Sub + *Module_Sub2;
}
|