[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / no-transitive-decls-change.cppm
blob83594b09ea7896eda3a4072558c35cef974e6520
1 // Testing that changing a declaration in an unused module file won't change 
2 // the BMI of the current module file.
3 //
4 // RUN: rm -rf %t
5 // RUN: split-file %s %t
6 //
7 // RUN: %clang_cc1 -std=c++20 %t/m-partA.cppm -emit-reduced-module-interface -o %t/m-partA.pcm
8 // RUN: %clang_cc1 -std=c++20 %t/m-partA.v1.cppm -emit-reduced-module-interface -o \
9 // RUN:     %t/m-partA.v1.pcm
10 // RUN: %clang_cc1 -std=c++20 %t/m-partB.cppm -emit-reduced-module-interface -o %t/m-partB.pcm
11 // RUN: %clang_cc1 -std=c++20 %t/m.cppm -emit-reduced-module-interface -o %t/m.pcm \
12 // RUN:     -fmodule-file=m:partA=%t/m-partA.pcm -fmodule-file=m:partB=%t/m-partB.pcm
13 // RUN: %clang_cc1 -std=c++20 %t/m.cppm -emit-reduced-module-interface -o %t/m.v1.pcm \
14 // RUN:     -fmodule-file=m:partA=%t/m-partA.v1.pcm -fmodule-file=m:partB=%t/m-partB.pcm
16 // RUN: %clang_cc1 -std=c++20 %t/useBOnly.cppm -emit-reduced-module-interface -o %t/useBOnly.pcm \
17 // RUN:     -fmodule-file=m=%t/m.pcm -fmodule-file=m:partA=%t/m-partA.pcm \
18 // RUN:     -fmodule-file=m:partB=%t/m-partB.pcm
19 // RUN: %clang_cc1 -std=c++20 %t/useBOnly.cppm -emit-reduced-module-interface -o %t/useBOnly.v1.pcm \
20 // RUN:     -fmodule-file=m=%t/m.v1.pcm -fmodule-file=m:partA=%t/m-partA.v1.pcm \
21 // RUN:     -fmodule-file=m:partB=%t/m-partB.pcm
22 // Since useBOnly only uses partB from module M, the change in partA shouldn't affect
23 // useBOnly.
24 // RUN: diff %t/useBOnly.pcm %t/useBOnly.v1.pcm &> /dev/null
26 //--- m-partA.cppm
27 export module m:partA;
29 namespace A_Impl {
30     inline int getAImpl() {
31         return 43;
32     }
34     inline int getA2Impl() {
35         return 43;
36     }
39 namespace A {
40     using A_Impl::getAImpl;
43 export inline int getA() {
44     return 43;
47 //--- m-partA.v1.cppm
48 export module m:partA;
50 namespace A_Impl {
51     inline int getAImpl() {
52         return 43;
53     }
55     inline int getA2Impl() {
56         return 43;
57     }
60 namespace A {
61     using A_Impl::getAImpl;
62     using A_Impl::getA2Impl;
65 inline int getA() {
66     return 43;
69 // The consuming module which didn't use m:partA completely is expected to be
70 // not changed.
71 inline int getB(int) {
72     return 88;
75 //--- m-partB.cppm
76 export module m:partB;
78 export inline int getB() {
79     return 430;
82 //--- m.cppm
83 export module m;
84 export import :partA;
85 export import :partB;
87 //--- useBOnly.cppm
88 export module useBOnly;
89 import m;
91 export inline int get() {
92     return getB();
95 //--- useAOnly.cppm
96 export module useAOnly;
97 import m;
99 export inline int get() {
100     A<int> a;
101     return a.getValue();