]> git.lizzy.rs Git - rust.git/blob - tests/ui/elide-errors-on-mismatched-tuple.stderr
Bless updated output from print-type-sizes tests.
[rust.git] / tests / ui / elide-errors-on-mismatched-tuple.stderr
1 error[E0308]: mismatched types
2   --> $DIR/elide-errors-on-mismatched-tuple.rs:14:9
3    |
4 LL |     let (a, b, c) = (A::new(), A::new()); // This tuple is 2 elements, should be three
5    |         ^^^^^^^^^   -------------------- this expression has type `(A, A)`
6    |         |
7    |         expected a tuple with 2 elements, found one with 3 elements
8    |
9    = note: expected tuple `(A, A)`
10               found tuple `(_, _, _)`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.