Skip to content

Commit

Permalink
Change bound order in rustfmt test
Browse files Browse the repository at this point in the history
It is unclear why this changed, but since it seems like a harmless
change, we're going to move forward with reformatting.
  • Loading branch information
Mark-Simulacrum committed Dec 23, 2019
1 parent 3a6cd8e commit 0f24ccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/rustdoc/unit-return.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ pub fn f0<F: FnMut(u8) + Clone>(f: F) {}
// @has 'foo/fn.f1.html' '//*[@class="rust fn"]' 'F: FnMut(u16) + Clone'
pub fn f1<F: FnMut(u16) -> () + Clone>(f: F) {}

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

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

0 comments on commit 0f24ccd

Please sign in to comment.