summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.stderr
blob: 6f853ccab378ae7ee33dcde1fc531616c033b4c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
error[E0308]: mismatched types
  --> $DIR/issue-53280-expected-float-found-integer-literal.rs:2:24
   |
LL |     let sixteen: f32 = 16;
   |                  ---   ^^
   |                  |     |
   |                  |     expected `f32`, found integer
   |                  |     help: use a float literal: `16.0`
   |                  expected due to this

error[E0308]: mismatched types
  --> $DIR/issue-53280-expected-float-found-integer-literal.rs:5:38
   |
LL |     let a_million_and_seventy: f64 = 1_000_070;
   |                                ---   ^^^^^^^^^
   |                                |     |
   |                                |     expected `f64`, found integer
   |                                |     help: use a float literal: `1_000_070.0`
   |                                expected due to this

error[E0308]: mismatched types
  --> $DIR/issue-53280-expected-float-found-integer-literal.rs:8:30
   |
LL |     let negative_nine: f32 = -9;
   |                        ---   ^^
   |                        |     |
   |                        |     expected `f32`, found integer
   |                        |     help: use a float literal: `-9.0`
   |                        expected due to this

error[E0308]: mismatched types
  --> $DIR/issue-53280-expected-float-found-integer-literal.rs:15:30
   |
LL |     let sixteen_again: f64 = 0x10;
   |                        ---   ^^^^ expected `f64`, found integer
   |                        |
   |                        expected due to this

error[E0308]: mismatched types
  --> $DIR/issue-53280-expected-float-found-integer-literal.rs:17:30
   |
LL |     let and_once_more: f32 = 0o20;
   |                        ---   ^^^^ expected `f32`, found integer
   |                        |
   |                        expected due to this

error: aborting due to 5 previous errors

For more information about this error, try `rustc --explain E0308`.