[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / implicit-module-remap.cpp
blob47927b9694016e9129b26e863d517f587b447138
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
3 // RUN: cd %t
4 //
5 // RUN: %clang_cc1 -fmodules -fmodule-map-file=module.modulemap -fmodules-cache-path=%t -remap-file "test.cpp;%t/test.cpp" %t/test.cpp
7 //--- a.h
8 #define FOO
10 //--- module.modulemap
11 module a {
12 header "a.h"
15 //--- test.cpp
16 #include "a.h"
18 #ifndef FOO
19 #error foo
20 #endif