about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/while_float.stderr
blob: e83e1b925c169f725047901bcb35afe30f046ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: while condition comparing floats
  --> tests/ui/while_float.rs:4:11
   |
LL |     while x < 42.0_f32 {
   |           ^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> tests/ui/while_float.rs:1:8
   |
LL | #[deny(clippy::while_float)]
   |        ^^^^^^^^^^^^^^^^^^^

error: while condition comparing floats
  --> tests/ui/while_float.rs:8:11
   |
LL |     while x < 42.0 {
   |           ^^^^^^^^

error: aborting due to 2 previous errors