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

11 lines
169 B
Rust

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