Skip to content

Commit 0f24ccd

Browse files
Change bound order in rustfmt test
It is unclear why this changed, but since it seems like a harmless change, we're going to move forward with reformatting.
1 parent 3a6cd8e commit 0f24ccd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/rustdoc/unit-return.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ pub fn f0<F: FnMut(u8) + Clone>(f: F) {}
1010
// @has 'foo/fn.f1.html' '//*[@class="rust fn"]' 'F: FnMut(u16) + Clone'
1111
pub fn f1<F: FnMut(u16) -> () + Clone>(f: F) {}
1212

13-
// @has 'foo/fn.f2.html' '//*[@class="rust fn"]' 'F: FnMut(u32) + Clone'
13+
// @has 'foo/fn.f2.html' '//*[@class="rust fn"]' 'F: Clone + FnMut(u32)'
1414
pub use unit_return::f2;
1515

16-
// @has 'foo/fn.f3.html' '//*[@class="rust fn"]' 'F: FnMut(u64) + Clone'
16+
// @has 'foo/fn.f3.html' '//*[@class="rust fn"]' 'F: Clone + FnMut(u64)'
1717
pub use unit_return::f3;

0 commit comments

Comments
 (0)