Mercurial > hg > CbC > CbC_llvm
view clang/test/Modules/deduction-guide.cppm @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | c4bab56944e8 |
children |
line wrap: on
line source
// RUN: rm -rf %t // RUN: mkdir %t // RUN: split-file %s %t // // RUN: %clang_cc1 -std=c++20 %t/Templ.cppm -emit-module-interface -o %t/Templ.pcm // RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -verify -fsyntax-only //--- foo.h template <typename T> class Templ { public: Templ(T a) {} }; template<typename T> Templ(T t) -> Templ<T>; //--- Templ.cppm module; #include "foo.h" export module Templ; export using ::Templ; //--- Use.cpp // expected-no-diagnostics import Templ; void func() { Templ t(5); }