rust/tests/rustdoc-js/assoc-type-unbound.rs
2024-10-30 10:35:39 -07:00

5 lines
82 B
Rust

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