[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git] / clang / test / Modules / template-pack.cppm
blob278c1c2d54ccf536f914a1bba9bf629c43e65623
1 // RUN: rm -rf %t
2 // RUN: mkdir -p %t
3 // RUN: split-file %s %t
4 //
5 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/a.cppm -o %t/a.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/b.cppm -fprebuilt-module-path=%t -fsyntax-only -verify
8 // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/a.cppm -o %t/a.pcm
9 // RUN: %clang_cc1 -std=c++20 %t/b.cppm -fprebuilt-module-path=%t -fsyntax-only -verify
11 //--- foo.h
13 namespace std
15     template<class _Dom1>
16     void operator &&(_Dom1 __v, _Dom1 __w)
17     { 
18         return;
19     }
22 //--- bar.h
23 namespace std 
25   template<typename... _Types>
26     struct _Traits
27     {
28       static constexpr bool _S_copy_ctor =
29    (__is_trivial(_Types) && ...);
30     };
32   template<typename... _Types>
33     struct variant
34     {
35       void
36       swap(variant& __rhs)
37       noexcept((__is_trivial(_Types) && ...))
38       {
39       }
40     };
43 //--- a.cppm
44 module;
45 #include "foo.h"
46 #include "bar.h"
47 export module a;
49 //--- b.cppm
50 // expected-no-diagnostics
51 module;
52 #include "bar.h"
53 export module b;
54 import a;