[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / no-eager-load.cppm
blobaa6de44c998f36caa4a407e3435846bca73f38e4
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
3 // RUN: cd %t
4 //
5 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/a.cppm -o %t/a.pcm
6 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/b.cppm -o %t/b.pcm
7 // RUN: %clang_cc1 -std=c++20 -fsyntax-only -verify %t/c.cpp \
8 // RUN:     -fprebuilt-module-path=%t
9 // RUN: %clang_cc1 -std=c++20 -fsyntax-only -verify %t/d.cpp \
10 // RUN:     -fprebuilt-module-path=%t
12 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/h.cppm \
13 // RUN:     -fprebuilt-module-path=%t -o %t/h.pcm
14 // RUN: %clang_cc1 -std=c++20 -fsyntax-only -verify %t/j.cpp \
15 // RUN:     -fprebuilt-module-path=%t
17 //--- a.cppm
18 export module a;
19 export void foo() {
23 //--- b.cppm
24 export module b;
25 void bar();
26 export void foo() {
27     bar();
30 //--- c.cpp
31 // expected-no-diagnostics
32 // Since we will load all the declaration lazily, we won't be able to find
33 // the ODR violation here.
34 import a;
35 import b;
37 //--- d.cpp
38 import a;
39 import b;
40 // Test that we can still check the odr violation if we call the function
41 // actually.
42 void use() {
43     foo(); // expected-error@* {{'foo' has different definitions in different modules;}}
44            // expected-note@* {{but in 'a' found a different body}}
47 // expected-error@a.cppm:* {{declaration 'foo' attached to named module 'a' cannot be attached to other modules}}
48 // expected-note@b.cppm:* {{}}
50 //--- h.cppm
51 export module h;
52 export import a;
53 export import b;
55 //--- j.cpp
56 import h;
57 void use() {
58     foo(); // expected-error@* {{'foo' has different definitions in different modules;}}
59            // expected-note@* {{but in 'a' found a different body}}
62 // expected-error@a.cppm:* {{declaration 'foo' attached to named module 'a' cannot be attached to other modules}}
63 // expected-note@b.cppm:* {{}}