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
9 FOO module foo
; // expected-note {{previous module declaration is here}}
13 BAR module bar
; // expected-error {{translation unit contains multiple module declarations}}