summaryrefslogtreecommitdiffstats
path: root/tests/ui/numbers-arithmetic/suggest-float-literal.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/numbers-arithmetic/suggest-float-literal.stderr')
-rw-r--r--tests/ui/numbers-arithmetic/suggest-float-literal.stderr32
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/ui/numbers-arithmetic/suggest-float-literal.stderr b/tests/ui/numbers-arithmetic/suggest-float-literal.stderr
index 03779d356..929a9e3b5 100644
--- a/tests/ui/numbers-arithmetic/suggest-float-literal.stderr
+++ b/tests/ui/numbers-arithmetic/suggest-float-literal.stderr
@@ -6,10 +6,10 @@ LL | x + 100
|
= help: the trait `Add<{integer}>` is not implemented for `f32`
= help: the following other types implement trait `Add<Rhs>`:
+ <f32 as Add>
+ <f32 as Add<&f32>>
<&'a f32 as Add<f32>>
<&f32 as Add<&f32>>
- <f32 as Add<&f32>>
- <f32 as Add>
help: consider using a floating-point literal by writing it with `.0`
|
LL | x + 100.0
@@ -23,10 +23,10 @@ LL | x + 100
|
= help: the trait `Add<{integer}>` is not implemented for `f64`
= help: the following other types implement trait `Add<Rhs>`:
+ <f64 as Add>
+ <f64 as Add<&f64>>
<&'a f64 as Add<f64>>
<&f64 as Add<&f64>>
- <f64 as Add<&f64>>
- <f64 as Add>
help: consider using a floating-point literal by writing it with `.0`
|
LL | x + 100.0
@@ -40,10 +40,10 @@ LL | x - 100
|
= help: the trait `Sub<{integer}>` is not implemented for `f32`
= help: the following other types implement trait `Sub<Rhs>`:
+ <f32 as Sub>
+ <f32 as Sub<&f32>>
<&'a f32 as Sub<f32>>
<&f32 as Sub<&f32>>
- <f32 as Sub<&f32>>
- <f32 as Sub>
help: consider using a floating-point literal by writing it with `.0`
|
LL | x - 100.0
@@ -57,10 +57,10 @@ LL | x - 100
|
= help: the trait `Sub<{integer}>` is not implemented for `f64`
= help: the following other types implement trait `Sub<Rhs>`:
+ <f64 as Sub>
+ <f64 as Sub<&f64>>
<&'a f64 as Sub<f64>>
<&f64 as Sub<&f64>>
- <f64 as Sub<&f64>>
- <f64 as Sub>
help: consider using a floating-point literal by writing it with `.0`
|
LL | x - 100.0
@@ -74,10 +74,10 @@ LL | x * 100
|
= help: the trait `Mul<{integer}>` is not implemented for `f32`
= help: the following other types implement trait `Mul<Rhs>`:
+ <f32 as Mul>
+ <f32 as Mul<&f32>>
<&'a f32 as Mul<f32>>
<&f32 as Mul<&f32>>
- <f32 as Mul<&f32>>
- <f32 as Mul>
help: consider using a floating-point literal by writing it with `.0`
|
LL | x * 100.0
@@ -91,10 +91,10 @@ LL | x * 100
|
= help: the trait `Mul<{integer}>` is not implemented for `f64`
= help: the following other types implement trait `Mul<Rhs>`:
+ <f64 as Mul>
+ <f64 as Mul<&f64>>
<&'a f64 as Mul<f64>>
<&f64 as Mul<&f64>>
- <f64 as Mul<&f64>>
- <f64 as Mul>
help: consider using a floating-point literal by writing it with `.0`
|
LL | x * 100.0
@@ -108,10 +108,10 @@ LL | x / 100
|
= help: the trait `Div<{integer}>` is not implemented for `f32`
= help: the following other types implement trait `Div<Rhs>`:
+ <f32 as Div>
+ <f32 as Div<&f32>>
<&'a f32 as Div<f32>>
<&f32 as Div<&f32>>
- <f32 as Div<&f32>>
- <f32 as Div>
help: consider using a floating-point literal by writing it with `.0`
|
LL | x / 100.0
@@ -125,10 +125,10 @@ LL | x / 100
|
= help: the trait `Div<{integer}>` is not implemented for `f64`
= help: the following other types implement trait `Div<Rhs>`:
+ <f64 as Div>
+ <f64 as Div<&f64>>
<&'a f64 as Div<f64>>
<&f64 as Div<&f64>>
- <f64 as Div<&f64>>
- <f64 as Div>
help: consider using a floating-point literal by writing it with `.0`
|
LL | x / 100.0