summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/reorder_impl_items/false.rs
blob: beb99f0fb8e6ab755bc33135c24f686fb573642e (plain)
1
2
3
4
5
6
7
8
9
10
11
// rustfmt-reorder_impl_items: false

struct Dummy;

impl Iterator for Dummy {
    fn next(&mut self) -> Option<Self::Item> {
        None
    }

    type Item = i32;
}