rust/tests/rustdoc-js/assoc-type-unbound.rs

5 lines
82 B
Rust

pub trait MyIter {
type Item;
fn next(&mut self) -> Option<Self::Item>;
}