2018-07-15 16:11:54 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-4968.rs:5:16
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | match 42 { A => () }
|
2018-12-31 19:43:08 -06:00
|
|
|
| ^ expected integer, found tuple
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
= note: expected type `{integer}`
|
2019-11-13 16:16:56 -06:00
|
|
|
found tuple `(isize, isize)`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|