summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-js/trait-methods.rs
blob: c88f5edfd55b7c146394107726537db9b030e4b5 (plain)
1
2
3
4
pub trait MyTrait {
    type Item;
    fn next(&mut self) -> Option<Self::Item>;
}