这是D虫吗? (无法访问私有模板参数)

时间:2018-12-31 02:12:31

标签: compiler-errors d private

handled_record.d

module handled_record;

template CObjects(alias destructor) {
    void f() {
        destructor();
    }
}

world.d

module world;

import handled_record;

private void free() { }

alias objects = CObjects!(free);

编译:

$ dmd -c *.d
handled_record.d(5): Error: function world.free is not accessible from module handled_record
world.d(7): Error: template instance `handled_record.CObjects!(free)` error instantiating

如果我删除private关键字,错误就会消失。

是编译器错误吗? (据我了解,传递给模板的别名符号应该可以被模板访问,因为它是显式传递给模板的,即使它是私有的。)

0 个答案:

没有答案