File tree 1 file changed +11
-8
lines changed
src/librustc_error_codes/error_codes
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 1
- This error indicates that the numeric value for the method being passed exists
2
- but the type of the numeric value or binding could not be identified.
1
+ A method was called on an ambiguous numeric type.
3
2
4
- The error happens on numeric literals :
3
+ Erroneous code example :
5
4
6
5
``` compile_fail,E0689
7
- 2.0.neg();
6
+ 2.0.neg(); // error!
8
7
```
9
8
10
- and on numeric bindings without an identified concrete type:
9
+ This error indicates that the numeric value for the method being passed exists
10
+ but the type of the numeric value or binding could not be identified.
11
+
12
+ The error happens on numeric literals and on numeric bindings without an
13
+ identified concrete type:
11
14
12
15
``` compile_fail,E0689
13
16
let x = 2.0;
@@ -19,8 +22,8 @@ Because of this, you must give the numeric literal or binding a type:
19
22
```
20
23
use std::ops::Neg;
21
24
22
- let _ = 2.0_f32.neg();
25
+ let _ = 2.0_f32.neg(); // ok!
23
26
let x: f32 = 2.0;
24
- let _ = x.neg();
25
- let _ = (2.0 as f32).neg();
27
+ let _ = x.neg(); // ok!
28
+ let _ = (2.0 as f32).neg(); // ok!
26
29
```
You can’t perform that action at this time.
0 commit comments