Files
clang-p2996/clang/test/Modules/explicitly-specialized-template.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

48 lines
836 B
C++

// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: split-file %s %t
//
// RUN: %clang_cc1 -std=c++20 %t/X.cppm -emit-module-interface -o %t/X.pcm
// RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -fsyntax-only -verify
//
//--- foo.h
#ifndef FOO_H
#define FOO_H
template <typename T>
struct base {};
template <typename T>
struct foo;
template <typename T>
struct foo {};
template <>
struct foo<int> : base<int> {
int getInt();
};
#endif // FOO_H
//--- X.cppm
module;
#include "foo.h"
export module X;
export template <class T>
class X {
foo<int> x;
public:
int print() {
return x.getInt();
}
};
//--- Use.cpp
import X;
foo<int> f; // expected-error {{'foo' must be declared before it is used}}
// expected-note@* {{declaration here is not visible}}
int bar() {
X<int> x;
return x.print();
}