bolt/deps/llvm-18.1.8/clang/test/Modules/find-privateheaders.m

14 lines
474 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: rm -rf %t.cache
// RUN: %clang_cc1 -fmodules -fsyntax-only -F%S/Inputs -fimplicit-module-maps \
// RUN: -fmodules-cache-path=%t.cache -Wno-private-module -DBUILD_PUBLIC -verify %s
// RUN: rm -rf %t.cache
// RUN: %clang_cc1 -fmodules -fsyntax-only -F%S/Inputs -fimplicit-module-maps \
// RUN: -fmodules-cache-path=%t.cache -Wno-private-module -verify %s
//expected-no-diagnostics
#ifdef BUILD_PUBLIC
#import "Main/Main.h"
#else
#import "MainA/MainPriv.h"
#endif