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

struct Dummy;

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

    type Item = i32;
}