|
| 1 | +error[E0425]: cannot find value `e` in this scope |
| 2 | + --> $DIR/issue-114423.rs:7:51 |
| 3 | + | |
| 4 | +LL | let (r, alone_in_path, b): (f32, f32, f32) = (e.clone(), e.clone()); |
| 5 | + | ^ not found in this scope |
| 6 | + |
| 7 | +error[E0425]: cannot find value `e` in this scope |
| 8 | + --> $DIR/issue-114423.rs:7:62 |
| 9 | + | |
| 10 | +LL | let (r, alone_in_path, b): (f32, f32, f32) = (e.clone(), e.clone()); |
| 11 | + | ^ not found in this scope |
| 12 | + |
| 13 | +error[E0425]: cannot find value `g` in this scope |
| 14 | + --> $DIR/issue-114423.rs:11:22 |
| 15 | + | |
| 16 | +LL | let _ = RGB { r, g, b }; |
| 17 | + | ^ help: a local variable with a similar name exists: `b` |
| 18 | + |
| 19 | +error[E0308]: mismatched types |
| 20 | + --> $DIR/issue-114423.rs:7:50 |
| 21 | + | |
| 22 | +LL | let (r, alone_in_path, b): (f32, f32, f32) = (e.clone(), e.clone()); |
| 23 | + | --------------- ^^^^^^^^^^^^^^^^^^^^^^ expected a tuple with 3 elements, found one with 2 elements |
| 24 | + | | |
| 25 | + | expected due to this |
| 26 | + | |
| 27 | + = note: expected tuple `(f32, f32, f32)` |
| 28 | + found tuple `(f32, f32)` |
| 29 | + |
| 30 | +error[E0560]: struct `RGB` has no field named `r` |
| 31 | + --> $DIR/issue-114423.rs:11:19 |
| 32 | + | |
| 33 | +LL | let _ = RGB { r, g, b }; |
| 34 | + | ^ `RGB` does not have this field |
| 35 | + | |
| 36 | + = note: all struct fields are already assigned |
| 37 | + |
| 38 | +error[E0308]: mismatched types |
| 39 | + --> $DIR/issue-114423.rs:11:25 |
| 40 | + | |
| 41 | +LL | let _ = RGB { r, g, b }; |
| 42 | + | ^ expected `f64`, found `f32` |
| 43 | + | |
| 44 | +help: you can convert an `f32` to an `f64` |
| 45 | + | |
| 46 | +LL | let _ = RGB { r, g, b: b.into() }; |
| 47 | + | ++ +++++++ |
| 48 | + |
| 49 | +error: aborting due to 6 previous errors |
| 50 | + |
| 51 | +Some errors have detailed explanations: E0308, E0425, E0560. |
| 52 | +For more information about an error, try `rustc --explain E0308`. |
0 commit comments