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

struct Dummy;

impl Iterator for Dummy {
    type Item = i32;

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