Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / pr62943.cppm
blob27868b78220f5c92006a059d9dd8d77fbadb5296
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/a.cppm -emit-module-interface -o %t/a.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/b.cppm -emit-module-interface -o %t/b.pcm
7 // RUN: %clang_cc1 -std=c++20 %t/c.cppm -emit-module-interface \
8 // RUN:     -fprebuilt-module-path=%t -o %t/c.pcm
9 // RUN: %clang_cc1 -std=c++20 %t/use.cpp -fprebuilt-module-path=%t \
10 // RUN:     -fsyntax-only -verify
12 //--- foo.h
13 #ifndef FOO_H
14 #define FOO_H
16 template<class _Tp>
17 concept __has_member_value_type = requires { typename _Tp::value_type; };
19 template<class _Tp>
20 concept __has_member_element_type = requires { typename _Tp::element_type; };
22 template <class _Tp>
23 inline constexpr bool is_object_v = __is_object(_Tp);
25 template<class> struct __cond_value_type {};
27 template<class _Tp>
28 requires is_object_v<_Tp>
29 struct __cond_value_type<_Tp> { using value_type = bool; };
31 template<class> struct indirectly_readable_traits {
32     static constexpr int value = false;
34 #endif
36 //--- foo.member_value_type.h
37 #include "foo.h"
38 template<__has_member_value_type _Tp>
39 struct indirectly_readable_traits<_Tp> : __cond_value_type<typename _Tp::value_type> {
40     static constexpr int value = false;
43 //--- foo.memeber_element_type.h
44 #include "foo.h"
45 template<__has_member_element_type _Tp>
46 struct indirectly_readable_traits<_Tp>  : __cond_value_type<typename _Tp::element_type>  {
47     static constexpr int value = false;
50 template<__has_member_value_type _Tp>
51   requires __has_member_element_type<_Tp>
52 struct indirectly_readable_traits<_Tp> {
53     static constexpr int value = true;
56 //--- foo.a.h
57 #include "foo.h"
58 #include "foo.member_value_type.h"
59 #include "foo.memeber_element_type.h"
60 template <typename T>
61 using AType  = indirectly_readable_traits<T>;
63 //--- a.cppm
64 module;
65 #include "foo.a.h"
66 export module a;
68 export using ::AType;
70 //--- b.cppm
71 module;
72 #include "foo.h"
73 #include "foo.memeber_element_type.h"
74 export module b;
76 //--- c.cppm
77 export module c;
79 export import a;
80 export import b;
82 //--- use.cpp
83 // expected-no-diagnostics
84 import c;
86 template <typename T>
87 class U {
88 public:
89     using value_type = T;
90     using element_type = T;
93 template <typename T>
94 class V {
95 public:
98 static_assert(!AType<V<int*>>::value);
99 static_assert(AType<U<int**>>::value);