2018-08-08 14:28:26 +02:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/pattern-tyvar.rs:5:18
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-01-05 17:08:15 -08:00
|
|
|
LL | match t {
|
2019-12-30 09:08:18 +01:00
|
|
|
| - this expression has type `Bar`
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | Bar::T1(_, Some::<isize>(x)) => {
|
2023-01-02 18:00:33 -08:00
|
|
|
| ^^^^^^^^^^^^^^^^ expected `Option<Vec<isize>>`, found `Option<isize>`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= note: expected enum `Option<Vec<isize>>`
|
|
|
|
found enum `Option<isize>`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|