make cargo test pass

This commit is contained in:
Centri3 2023-04-16 23:36:01 -05:00
parent 0a81f8257e
commit dfccebe3e0
3 changed files with 4 additions and 4 deletions

View file

@ -83,7 +83,7 @@ declare_clippy_lint! {
/// # fn f(_: u32) {} /// # fn f(_: u32) {}
/// # let x = 0; /// # let x = 0;
/// unsafe { f(x); } /// unsafe { f(x); }
/// ///
/// unsafe { /// unsafe {
/// let x = 1; /// let x = 1;
/// f(x) /// f(x)
@ -94,7 +94,7 @@ declare_clippy_lint! {
/// # fn f(_: u32) {} /// # fn f(_: u32) {}
/// # let x = 0; /// # let x = 0;
/// unsafe { f(x) }; /// unsafe { f(x) };
/// ///
/// unsafe { /// unsafe {
/// let x = 1; /// let x = 1;
/// f(x); /// f(x);

View file

@ -82,4 +82,4 @@ fn main() {
{ unit_fn_block(); }; { unit_fn_block(); };
unit_fn_block() unit_fn_block()
} }

View file

@ -82,4 +82,4 @@ fn main() {
{ unit_fn_block(); }; { unit_fn_block(); };
unit_fn_block() unit_fn_block()
} }