summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/type-mismatch-struct-field-shorthand.stderr
blob: 72c84d167167fc69b2ab6177ae02b06441d8deaa (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
error[E0308]: mismatched types
  --> $DIR/type-mismatch-struct-field-shorthand.rs:8:19
   |
LL |     let _ = RGB { r, g, b };
   |                   ^ expected `f64`, found `f32`
   |
help: you can convert an `f32` to an `f64`
   |
LL |     let _ = RGB { r: r.into(), g, b };
   |                   ++  +++++++

error[E0308]: mismatched types
  --> $DIR/type-mismatch-struct-field-shorthand.rs:8:22
   |
LL |     let _ = RGB { r, g, b };
   |                      ^ expected `f64`, found `f32`
   |
help: you can convert an `f32` to an `f64`
   |
LL |     let _ = RGB { r, g: g.into(), b };
   |                      ++  +++++++

error[E0308]: mismatched types
  --> $DIR/type-mismatch-struct-field-shorthand.rs:8:25
   |
LL |     let _ = RGB { r, g, b };
   |                         ^ expected `f64`, found `f32`
   |
help: you can convert an `f32` to an `f64`
   |
LL |     let _ = RGB { r, g, b: b.into() };
   |                         ++  +++++++

error: aborting due to 3 previous errors

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