// check-pass pub trait Sequence> {} pub trait NodeWalk>: Sequence { } pub trait GraphBase { type NodeIndex; } pub trait WalkableGraph: GraphBase {} fn main() {}