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) {}
/// # let x = 0;
/// unsafe { f(x); }
///
///
/// unsafe {
/// let x = 1;
/// f(x)
@ -94,7 +94,7 @@ declare_clippy_lint! {
/// # fn f(_: u32) {}
/// # let x = 0;
/// unsafe { f(x) };
///
///
/// unsafe {
/// let x = 1;
/// f(x);

View File

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

View File

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