]> git.lizzy.rs Git - rust.git/blob - src/test/ui/half-open-range-patterns/pat-tuple-5.stderr
Point (again) to more expressions with their type, even if not fully resolved
[rust.git] / src / test / ui / half-open-range-patterns / pat-tuple-5.stderr
1 error[E0308]: mismatched types
2   --> $DIR/pat-tuple-5.rs:8:10
3    |
4 LL |     match (0, 1) {
5    |           ------ this expression has type `({integer}, {integer})`
6 LL |         (PAT ..) => {}
7    |          ^^^ expected tuple, found `u8`
8    |
9    = note: expected tuple `({integer}, {integer})`
10                found type `u8`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.