
This patch introduces a new kind of ModuleOwnershipKind as ReachableWhenImported. This intended the status for reachable described at: https://eel.is/c++draft/module.reach#3. Note that this patch is not intended to support all semantics about reachable semantics. For example, this patch didn't implement discarded declarations in GMF. (https://eel.is/c++draft/module.global.frag#3). This fixes: https://bugs.llvm.org/show_bug.cgi?id=52281 and https://godbolt.org/z/81f3ocjfW. Reviewed By: rsmith, iains Differential Revision: https://reviews.llvm.org/D113545
46 lines
821 B
C++
46 lines
821 B
C++
// RUN: rm -rf %t
|
|
// RUN: mkdir -p %t
|
|
// RUN: split-file %s %t
|
|
//
|
|
// RUN: %clang_cc1 -std=c++20 %t/foo.cppm -emit-module-interface -o %t/foo.pcm
|
|
// RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -fsyntax-only -verify
|
|
//
|
|
//--- bar.h
|
|
struct bar_base {
|
|
enum A {
|
|
a,
|
|
b,
|
|
c,
|
|
d
|
|
};
|
|
constexpr static bool value = false;
|
|
static bool get() { return false; }
|
|
bool member_value = false;
|
|
bool get_func() { return false; }
|
|
};
|
|
|
|
template <typename T>
|
|
struct bar : public bar_base {
|
|
};
|
|
|
|
//--- foo.cppm
|
|
module;
|
|
#include "bar.h"
|
|
export module foo;
|
|
export template <typename T>
|
|
int foo() {
|
|
bool a = bar<T>::value;
|
|
bar<T>::get();
|
|
bar<T> b;
|
|
b.member_value = a;
|
|
bool c = b.get_func();
|
|
return bar<T>::a;
|
|
}
|
|
|
|
//--- Use.cpp
|
|
// expected-no-diagnostics
|
|
import foo;
|
|
void test() {
|
|
foo<int>();
|
|
}
|