about summary refs log tree commit diff
path: root/tests/rustdoc-js/hof.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-06-03 17:35:56 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-06-04 14:15:06 +1000
commitc6fb703c05a47a7f20c59c5315fe704c536084d0 (patch)
tree08d610a0b2d7fb99c745ae61f36d3cb685b62094 /tests/rustdoc-js/hof.rs
parent98d65d62c511777d6372ae0115d40f82d0a42857 (diff)
downloadrust-c6fb703c05a47a7f20c59c5315fe704c536084d0.tar.gz
rust-c6fb703c05a47a7f20c59c5315fe704c536084d0.zip
rustfmt `tests/rustdoc-js/`.
Diffstat (limited to 'tests/rustdoc-js/hof.rs')
-rw-r--r--tests/rustdoc-js/hof.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/rustdoc-js/hof.rs b/tests/rustdoc-js/hof.rs
index 4d2c6e331ca..e4d550250e8 100644
--- a/tests/rustdoc-js/hof.rs
+++ b/tests/rustdoc-js/hof.rs
@@ -4,9 +4,9 @@ pub struct First<T>(T);
 pub struct Second<T>(T);
 pub struct Third<T>(T);
 
-pub fn fn_ptr(_: fn (First<u32>) -> !, _: bool) {}
-pub fn fn_once(_: impl FnOnce (Second<u32>) -> !, _: u8) {}
-pub fn fn_mut(_: impl FnMut (Third<u32>) -> !, _: i8) {}
-pub fn fn_(_: impl Fn (u32) -> !, _: char) {}
+pub fn fn_ptr(_: fn(First<u32>) -> !, _: bool) {}
+pub fn fn_once(_: impl FnOnce(Second<u32>) -> !, _: u8) {}
+pub fn fn_mut(_: impl FnMut(Third<u32>) -> !, _: i8) {}
+pub fn fn_(_: impl Fn(u32) -> !, _: char) {}
 
 pub fn multiple(_: impl Fn(&'static str, &'static str) -> i8) {}