Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / pr59719.cppm
blob5aea8992a0ca85bfcaebde7a56390042d839a239
1 // https://github.com/llvm/llvm-project/issues/59780
2 //
3 // RUN: rm -rf %t
4 // RUN: mkdir %t
5 // RUN: split-file %s %t
6 //
7 // RUN: %clang_cc1 -std=c++20 %t/data.cppm -emit-module-interface -o %t/data.pcm
8 // RUN: %clang_cc1 -std=c++20 %t/main.cpp -fprebuilt-module-path=%t -fsyntax-only -verify
10 //--- foo.h
11 namespace std {
13 template <class _Tp>
14 class expected {
15 public:
16   expected(_Tp&& __u)
17     {}
19    constexpr ~expected()
20     requires(__is_trivially_destructible(_Tp))
21   = default;
23    constexpr ~expected()
24     requires(!__is_trivially_destructible(_Tp))
25   {
26   }
29 template <class _Tp>
30 class unique_ptr {
31 public:
32    unique_ptr(void* __p) {}
33    ~unique_ptr() {}
38 //--- data.cppm
39 module;
40 #include "foo.h"
41 export module data;
42 export namespace std {
43     using std::unique_ptr;
44     using std::expected;                    
47 export std::expected<std::unique_ptr<int>> parse() {
48   return std::unique_ptr<int>(nullptr);                                             
51 //--- main.cpp
52 // expected-no-diagnostics
53 import data;
54                                                                                 
55 int main(int argc, const char *argv[]) {                                        
56   std::expected<std::unique_ptr<int>> result = parse();