Add PR check to suggest alternatives to using undef (#118506)
[llvm-project.git] / clang / test / Modules / pr77995.cppm
blob26442dacac4fb61a0d09b2bd24245f2b5eb6db03
1 // RUN: rm -rf %t
2 // RUN: mkdir -p %t
3 // RUN: split-file %s %t
4 //
5 // RUN: %clang_cc1 -std=c++20 %t/foo.cppm -emit-module-interface -o %t/foo.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/use.cpp -fmodule-file=foo=%t/foo.pcm -verify -fsyntax-only
8 //--- a.hpp
9 #pragma once
10 #define A 43
12 //--- foo.cppm
13 module;
14 #include "a.hpp"
15 export module foo;
16 export constexpr auto B = A;
18 //--- use.cpp
19 // expected-no-diagnostics
20 import foo;
21 #include "a.hpp"
23 static_assert(A == 43);
24 static_assert(B == 43);