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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
82 B
Rust
Raw Permalink Normal View History

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