我一直在尝试新的模块功能,但我无法导出全局常量。导出似乎编译得很好,但是在导入编译器时抱怨没有声明常量。我的代码:
测试.cpp
export module test;
export struct my_type { int x, y; };
export constexpr int my_constant = 42;
export int my_function() { return my_constant; }
主文件
import test;
int main() {
my_type t{1, 2};
int i = my_function();
int j = my_constant; // <- error here
}
我究竟做错了什么?我在 Linux 上使用 g++ 11.1.0:g++-11 -std=c++20 -fmodules-ts test.cpp main.cpp -o main
错误信息是:error: ‘my_constant’ was not declared in this scope