rust/tests/target/configs/reorder_impl_items/true.rs

12 lines
168 B
Rust
Raw Normal View History

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