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
|
|
|
|
| ^^^^^^^^^ expected a tuple with 2 elements, found one with 3 elements
|
|
|
|
|
|
|
|
|
= note: expected type `(A, A)`
|
|
|
|
found type `(_, _, _)`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|