rust/tests/target/configs/reorder_impl_items/true.rs
2018-04-05 12:49:16 +09:00

11 lines
168 B
Rust

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