12 lines
169 B
Rust
Raw Normal View History

2018-04-04 14:57:30 +09:00
// rustfmt-reorder_impl_items: false
struct Dummy;
impl Iterator for Dummy {
fn next(&mut self) -> Option<Self::Item> {
None
}
type Item = i32;
}