bolt/deps/llvm-18.1.8/clang/test/Modules/has_include_non_modular.c
2025-02-14 19:21:04 +01:00

14 lines
308 B
C

// RUN: rm -rf %t
// RUN: split-file %s %t
//--- module.modulemap
module Mod { header "mod.h" }
//--- mod.h
#if __has_include("textual.h")
#endif
//--- textual.h
//--- tu.c
#include "mod.h"
// RUN: %clang -fsyntax-only %t/tu.c -fmodules -fmodules-cache-path=%t/cache -Werror=non-modular-include-in-module