标签: rust
有人可以解释为什么这段代码无法编译?
#![feature(associated_types)] trait Wub { type Zoop; } trait Flim: Wub { }
我收到错误:
qqq.rs:7:13: 7:16 error: associated types may not be referenced here qqq.rs:7 trait Flim: Wub {
答案 0 :(得分:2)
看起来像一个错误,我提交了#18996。目前关联的项目非常原始,问题#17307总结了要去的程度。