2018-08-14 18:46:28 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/elide-errors-on-mismatched-tuple.rs:14:9
|
2018-08-14 18:46:28 -05:00
|
|
|
|
|
|
|
|
LL | let (a, b, c) = (A::new(), A::new()); // This tuple is 2 elements, should be three
|
2020-02-24 22:46:58 -06:00
|
|
|
| ^^^^^^^^^ -------------------- this expression has type `(A, A)`
|
|
|
|
| |
|
|
|
|
| expected a tuple with 2 elements, found one with 3 elements
|
2018-08-14 18:46:28 -05:00
|
|
|
|
|
2019-11-13 16:16:56 -06:00
|
|
|
= note: expected tuple `(A, A)`
|
|
|
|
found tuple `(_, _, _)`
|
2018-08-14 18:46:28 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-14 18:46:28 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|