3 // RUN: split-file %s %t
5 // RUN: %clang_cc1 -std=c++20 %t/bar.cppm -emit-module-interface -o %t/bar.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/foo.cc -fmodule-file=bar=%t/bar.pcm -fsyntax-only -verify
8 // RUN: %clang_cc1 -std=c++20 -fskip-odr-check-in-gmf %t/bar.cppm -emit-module-interface \
10 // RUN: %clang_cc1 -std=c++20 -fskip-odr-check-in-gmf %t/foo.cc \
11 // RUN: -fmodule-file=bar=%t/bar.pcm -fsyntax-only -verify
13 // RUN: %clang_cc1 -std=c++20 %t/bar.cppm -emit-reduced-module-interface -o %t/bar.pcm
14 // RUN: %clang_cc1 -std=c++20 %t/foo.cc -fmodule-file=bar=%t/bar.pcm -fsyntax-only -verify
16 // RUN: %clang_cc1 -std=c++20 -fskip-odr-check-in-gmf %t/bar.cppm -emit-reduced-module-interface \
18 // RUN: %clang_cc1 -std=c++20 -fskip-odr-check-in-gmf %t/foo.cc \
19 // RUN: -fmodule-file=bar=%t/bar.pcm -fsyntax-only -verify
25 constexpr T(const char *) {}
29 inline constexpr operator T() const { return {s}; }
32 inline static constexpr char s[]{c..., '\0'};
39 export inline constexpr auto k = t<'k'>{};
42 // expected-no-diagnostics