blob: 202f8dd40d7a94785a4024fdb73e40763322787f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: split-file %s %t
//
// RUN: %clang_cc1 -std=c++20 %t/B.cppm -emit-module-interface -o %t/B.pcm
// RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -fsyntax-only -verify
// RUN: %clang_cc1 -std=c++20 %t/B.cppm -emit-reduced-module-interface -o %t/B.pcm
// RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -fsyntax-only -verify
//
//--- templ.h
template <typename T, typename U = T>
class templ {};
template <typename T, typename U = void>
void templ_func() {}
//--- B.cppm
module;
#include "templ.h"
export module B;
export template <typename G>
templ<G> bar() {
templ_func<G>();
return {};
}
//--- Use.cpp
// expected-no-diagnostics
import B;
auto foo() {
return bar<int>();
}
|