blob: cbb466fce07f4c64a1c8668523215ab7afa2cb4e (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: split-file %s %t
//
// RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-reduced-module-interface -o %t/a.pcm
// RUN: %clang_cc1 -std=c++20 %t/a.cpp -fmodule-file=a=%t/a.pcm -ast-dump | FileCheck %s
// RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-module-interface -o %t/a.pcm
// RUN: %clang_cc1 -std=c++20 %t/a.cpp -fmodule-file=a=%t/a.pcm -ast-dump | FileCheck %s
//--- a.h
namespace a {
class A {
public:
int aaaa;
int get() {
return aaaa;
}
};
template <class T>
class B {
public:
B(T t): t(t) {}
T t;
};
using BI = B<int>;
inline int get(A a, BI b) {
return a.get() + b.t;
}
}
//--- a.cppm
module;
#include "a.h"
export module a;
namespace a {
export using ::a::A;
export using ::a::get;
export using ::a::BI;
}
//--- a.cpp
import a;
#include "a.h"
int test() {
a::A aa;
a::BI bb(43);
return get(aa, bb);
}
// CHECK-NOT: DefinitionData
// CHECK: FunctionDecl {{.*}} get 'int (A, BI)' {{.*}}
// CHECK-NOT: CompoundStmt
// CHECK: FunctionDecl {{.*}} test {{.*}}
|