llvm-capstone/clang/test/Modules/Reachability-template-instantiation.cpp
Chuanqi Xu 9c04851cf5 [C++20] [Module] Support reachable definition initially/partially
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
2022-06-29 12:48:48 +08:00

54 lines
940 B
C++

// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: split-file %s %t
//
// RUN: %clang_cc1 -std=c++20 %t/Templ.cppm -emit-module-interface -o %t/Templ.pcm
// RUN: %clang_cc1 -std=c++20 %t/Use.cppm -fprebuilt-module-path=%t -emit-module-interface -o %t/Use.pcm
// RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t -I%t %t/Use.cpp -verify -fsyntax-only
//
//--- Templ.h
#ifndef TEMPL_H
#define TEMPL_H
template <class T>
class Wrapper {
public:
T value;
};
#endif
//--- Templ.cppm
export module Templ;
export template <class T>
class Wrapper2 {
public:
T value;
};
//--- Use.cppm
module;
#include "Templ.h"
export module Use;
import Templ;
export template <class T>
class Use {
public:
Wrapper<T> value;
Wrapper2<T> value2;
};
export template <class T>
Wrapper<T> wrapper;
//--- Use.cpp
// expected-no-diagnostics
module;
#include "Templ.h"
export module User;
export template <class T>
class User {
public:
Wrapper<T> value;
};