mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00

Previously, we forget to handle reachability for deduction guide. The deduction guide is a hint to the compiler. And the deduction guide should be able to use if the corresponding template decl is reachable.
31 lines
534 B
C++
31 lines
534 B
C++
// 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);
|
|
}
|
|
|