Files
clang-p2996/clang/test/Modules/named-modules-adl-2.cppm
Chuanqi Xu e22fa1d4c6 [C++20] [Modules] Emit a warning if the we load the modules by implicit generated path
A step to address https://github.com/llvm/llvm-project/issues/62707.

It is not user friendly enough to drop the implicitly generated path
directly. Let's emit the warning first and drop it in the next version.
2023-05-17 17:53:36 +08:00

42 lines
683 B
C++

// RUN: rm -rf %t
// RUN: split-file %s %t
// RUN: cd %t
//
// RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-module-interface -o %t/a.pcm
// RUN: %clang_cc1 -std=c++20 %t/b.cppm -fmodule-file=a=%t/a.pcm -emit-module-interface -o %t/b.pcm
// RUN: %clang_cc1 -std=c++20 %t/c.cppm -fmodule-file=a=%t/a.pcm -fmodule-file=b=%t/b.pcm -fsyntax-only -verify
//--- a.cppm
export module a;
export template<typename T>
void a(T x) {
+x;
}
//--- b.h
struct s {
};
void operator+(s) {
}
//--- b.cppm
module;
#include "b.h"
export module b;
import a;
export template<typename T>
void b() {
a(s());
}
//--- c.cppm
// expected-no-diagnostics
export module c;
import b;
void c() {
b<int>();
}