blob: beb99f0fb8e6ab755bc33135c24f686fb573642e [file] [log] [blame]
// rustfmt-reorder_impl_items: false
struct Dummy;
impl Iterator for Dummy {
fn next(&mut self) -> Option<Self::Item> {
None
}
type Item = i32;
}