blob: c88f5edfd55b7c146394107726537db9b030e4b5 [file] [log] [blame] [edit]
pub trait MyTrait {
type Item;
fn next(&mut self) -> Option<Self::Item>;
}