brintos

brintos / llvm-project-archived public Read only

0
0
Text · 585 B · 3dff4a4 Raw
16 lines · cpp
1// Check that modules included in the preamble remain visible to the rest of the2// file.3 4// RUN: rm -rf %t.mcp5// RUN: %clang_cc1 -emit-pch -o %t.pch %s -fmodules -fmodule-map-file=%S/Inputs/modules/module.modulemap -fmodules-local-submodule-visibility -fmodules-cache-path=%t.mcp6// RUN: %clang_cc1 -include-pch %t.pch %s -fmodules -fmodule-map-file=%S/Inputs/modules/module.modulemap -fmodules-local-submodule-visibility -fmodules-cache-path=%t.mcp7 8#ifndef MAIN_FILE9#define MAIN_FILE10// Premable section.11#include "Inputs/modules/Foo.h"12#else13// Main section.14MyType foo;15#endif16