]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/source/configs/reorder_impl_items/true.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / rustfmt / tests / source / configs / reorder_impl_items / true.rs
CommitLineData
f20569fa
XL
1// rustfmt-reorder_impl_items: true
2
3struct Dummy;
4
5impl Iterator for Dummy {
6 fn next(&mut self) -> Option<Self::Item> {
7 None
8 }
9
10 type Item = i32;
11}