
Close https://github.com/llvm/llvm-project/issues/123815 See the comments for details. We can't get primary context arbitrarily since the redecl may have different context and information. There is a TODO for modules specific case, I'd like to make it after this PR.
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
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 -emit-module-interface -o %t/b.pcm \
|
|
// RUN: -fmodule-file=a=%t/a.pcm
|
|
// RUN: %clang_cc1 -std=c++20 %t/use.cc -fmodule-file=a=%t/a.pcm -fmodule-file=b=%t/b.pcm \
|
|
// RUN: -fsyntax-only -verify
|
|
//
|
|
// RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-reduced-module-interface -o %t/a.pcm
|
|
// RUN: %clang_cc1 -std=c++20 %t/b.cppm -emit-reduced-module-interface -o %t/b.pcm \
|
|
// RUN: -fmodule-file=a=%t/a.pcm
|
|
// RUN: %clang_cc1 -std=c++20 %t/use.cc -fmodule-file=a=%t/a.pcm -fmodule-file=b=%t/b.pcm \
|
|
// RUN: -fsyntax-only -verify
|
|
|
|
//--- a.cppm
|
|
export module a;
|
|
|
|
namespace n {
|
|
}
|
|
|
|
//--- b.cppm
|
|
export module b;
|
|
import a;
|
|
|
|
namespace n {
|
|
struct monostate {
|
|
friend bool operator==(monostate, monostate) = default;
|
|
};
|
|
|
|
export struct wrapper {
|
|
friend bool operator==(wrapper const &, wrapper const &) = default;
|
|
|
|
monostate m_value;
|
|
};
|
|
}
|
|
|
|
//--- use.cc
|
|
// expected-no-diagnostics
|
|
import b;
|
|
|
|
static_assert(n::wrapper() == n::wrapper());
|