12 lines
168 B
Rust
12 lines
168 B
Rust
|
// rustfmt-reorder_impl_items: true
|
||
|
|
||
|
struct Dummy;
|
||
|
|
||
|
impl Iterator for Dummy {
|
||
|
fn next(&mut self) -> Option<Self::Item> {
|
||
|
None
|
||
|
}
|
||
|
|
||
|
type Item = i32;
|
||
|
}
|