diff options
| author | bors <bors@rust-lang.org> | 2024-02-27 18:28:06 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-02-27 18:28:06 +0000 |
| commit | 1e4f9e302c63ee126a4db8ec2cf3fa396dc74d52 (patch) | |
| tree | a89d7d4d02abf1e0a3bb06fe9ae02b52c96a8499 /src/tools/clippy/tests/ui/zero_div_zero.stderr | |
| parent | 8790c3cc7c23057957ba7e9248961b01ea4521a1 (diff) | |
| parent | f99056bd87af9f4489df89da4d9419da14cc54de (diff) | |
Auto merge of #121677 - flip1995:clippy-subtree-update, r=Manishearth
Clippy subtree update r? `@Manishearth`
Diffstat (limited to 'src/tools/clippy/tests/ui/zero_div_zero.stderr')
| -rw-r--r-- | src/tools/clippy/tests/ui/zero_div_zero.stderr | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/clippy/tests/ui/zero_div_zero.stderr b/src/tools/clippy/tests/ui/zero_div_zero.stderr index 797ae2537bb..5294ebdfa5d 100644 --- a/src/tools/clippy/tests/ui/zero_div_zero.stderr +++ b/src/tools/clippy/tests/ui/zero_div_zero.stderr @@ -1,5 +1,5 @@ error: constant division of `0.0` with `0.0` will always result in NaN - --> $DIR/zero_div_zero.rs:4:15 + --> tests/ui/zero_div_zero.rs:4:15 | LL | let nan = 0.0 / 0.0; | ^^^^^^^^^ @@ -9,7 +9,7 @@ LL | let nan = 0.0 / 0.0; = help: to override `-D warnings` add `#[allow(clippy::zero_divided_by_zero)]` error: constant division of `0.0` with `0.0` will always result in NaN - --> $DIR/zero_div_zero.rs:6:19 + --> tests/ui/zero_div_zero.rs:6:19 | LL | let f64_nan = 0.0 / 0.0f64; | ^^^^^^^^^^^^ @@ -17,7 +17,7 @@ LL | let f64_nan = 0.0 / 0.0f64; = help: consider using `f64::NAN` if you would like a constant representing NaN error: constant division of `0.0` with `0.0` will always result in NaN - --> $DIR/zero_div_zero.rs:8:25 + --> tests/ui/zero_div_zero.rs:8:25 | LL | let other_f64_nan = 0.0f64 / 0.0; | ^^^^^^^^^^^^ @@ -25,7 +25,7 @@ LL | let other_f64_nan = 0.0f64 / 0.0; = help: consider using `f64::NAN` if you would like a constant representing NaN error: constant division of `0.0` with `0.0` will always result in NaN - --> $DIR/zero_div_zero.rs:10:28 + --> tests/ui/zero_div_zero.rs:10:28 | LL | let one_more_f64_nan = 0.0f64 / 0.0f64; | ^^^^^^^^^^^^^^^ |
