1 | // RUN: rm -rf %t.cache |
---|---|
2 | // RUN: %clang_cc1 -fmodules -fsyntax-only -F%S/Inputs -fimplicit-module-maps \ |
3 | // RUN: -fmodules-cache-path=%t.cache -Wno-private-module -DBUILD_PUBLIC -verify %s |
4 | // RUN: rm -rf %t.cache |
5 | // RUN: %clang_cc1 -fmodules -fsyntax-only -F%S/Inputs -fimplicit-module-maps \ |
6 | // RUN: -fmodules-cache-path=%t.cache -Wno-private-module -verify %s |
7 | //expected-no-diagnostics |
8 | |
9 | #ifdef BUILD_PUBLIC |
10 | #import "Main/Main.h" |
11 | #else |
12 | #import "MainA/MainPriv.h" |
13 | #endif |
14 |