Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / deduction-guide2.cppm
bloba163c3656831019008a00261badf7c8ae1c5ec40
1 // RUN: rm -rf %t
2 // RUN: mkdir %t
3 // RUN: split-file %s %t
4 //
5 // RUN: %clang_cc1 -std=c++20 %t/Templ.cppm -emit-module-interface -o %t/Templ.pcm
6 // RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -verify -fsyntax-only
8 //--- Templ.cppm
9 export module Templ;
10 export template <typename T>
11 class Templ {
12 public:
13     Templ(T a) {}
16 template<typename T>
17 Templ(T t) -> Templ<T>;
19 //--- Use.cpp
20 // expected-no-diagnostics
21 import Templ;
22 void func() {
23     Templ t(5);