about summary refs log tree commit diff
path: root/tests/rustdoc-js/generics-trait.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/generics-trait.rs
parent98d65d62c511777d6372ae0115d40f82d0a42857 (diff)
downloadrust-c6fb703c05a47a7f20c59c5315fe704c536084d0.tar.gz
rust-c6fb703c05a47a7f20c59c5315fe704c536084d0.zip
rustfmt `tests/rustdoc-js/`.
Diffstat (limited to 'tests/rustdoc-js/generics-trait.rs')
-rw-r--r--tests/rustdoc-js/generics-trait.rs16
1 files changed, 12 insertions, 4 deletions
diff --git a/tests/rustdoc-js/generics-trait.rs b/tests/rustdoc-js/generics-trait.rs
index 20db117ccd5..58c86361e41 100644
--- a/tests/rustdoc-js/generics-trait.rs
+++ b/tests/rustdoc-js/generics-trait.rs
@@ -1,8 +1,16 @@
 pub trait SomeTrait {}
 pub trait OtherThingxxxxxxxx {}
 
-pub fn alef<T: OtherThingxxxxxxxx>() -> Result<T, ()> { loop {} }
-pub fn bet<T: SomeTrait>() -> Result<T, ()> { loop {} }
+pub fn alef<T: OtherThingxxxxxxxx>() -> Result<T, ()> {
+    loop {}
+}
+pub fn bet<T: SomeTrait>() -> Result<T, ()> {
+    loop {}
+}
 
-pub fn alpha<T: OtherThingxxxxxxxx>(_param: Result<T, ()>) { loop {} }
-pub fn beta<T: SomeTrait>(_param: Result<T, ()>) { loop {} }
+pub fn alpha<T: OtherThingxxxxxxxx>(_param: Result<T, ()>) {
+    loop {}
+}
+pub fn beta<T: SomeTrait>(_param: Result<T, ()>) {
+    loop {}
+}