12 lines
168 B
Rust
Raw Normal View History

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