1
Fork 0

rustfmt tests/rustdoc-js/.

This commit is contained in:
Nicholas Nethercote 2024-06-03 17:35:56 +10:00
parent 98d65d62c5
commit c6fb703c05
28 changed files with 240 additions and 133 deletions

View file

@ -1,4 +1,4 @@
use std::io::{Result as IoResult, Read};
use std::io::{Read, Result as IoResult};
pub struct Aaaaaaa;
@ -29,7 +29,10 @@ impl<T: Read> Ddddddd<T> {
pub fn ggggggg(self) -> u64 {
1
}
pub fn hhhhhhh() -> Self where T: Default {
pub fn hhhhhhh() -> Self
where
T: Default,
{
Ddddddd(T::default())
}
}