mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 11:56:08 +00:00

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
30 lines
589 B
C++
30 lines
589 B
C++
// RUN: rm -rf %t
|
|
// RUN: mkdir -p %t
|
|
// RUN: split-file %s %t
|
|
//
|
|
// RUN: %clang_cc1 -std=c++20 %t/B.cppm -emit-module-interface -o %t/B.pcm
|
|
// RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -fsyntax-only -verify
|
|
//
|
|
//--- templ.h
|
|
template <typename T, typename U = T>
|
|
class templ {};
|
|
template <typename T, typename U = void>
|
|
void templ_func() {}
|
|
|
|
//--- B.cppm
|
|
module;
|
|
#include "templ.h"
|
|
export module B;
|
|
export template <typename G>
|
|
templ<G> bar() {
|
|
templ_func<G>();
|
|
return {};
|
|
}
|
|
|
|
//--- Use.cpp
|
|
// expected-no-diagnostics
|
|
import B;
|
|
auto foo() {
|
|
return bar<int>();
|
|
}
|