Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CXX / module / dcl.dcl / dcl.module / p1.cpp
blobdb86b5dd34c380e3fd556591bc832504568065d0
1 // RUN: %clang_cc1 -std=c++20 -verify %s -DFOO=export -DBAR=export
2 // RUN: %clang_cc1 -std=c++20 -verify %s -DFOO=export -DBAR=
3 // RUN: %clang_cc1 -std=c++20 %s -DFOO=export -emit-module-interface -o %t
4 // RUN: %clang_cc1 -std=c++20 %s -fmodule-file=foo=%t -DFOO=
5 // RUN: %clang_cc1 -std=c++20 %s -fmodule-file=foo=%t -DBAR=export
6 // RUN: %clang_cc1 -std=c++20 -verify %s -fmodule-file=foo=%t -DFOO= -DBAR=export
8 #ifdef FOO
9 FOO module foo; // expected-note {{previous module declaration is here}}
10 #endif
12 #ifdef BAR
13 BAR module bar; // expected-error {{translation unit contains multiple module declarations}}
14 #endif