2018-08-08 07:28:26 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/pattern-tyvar.rs:5:18
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-01-05 19:08:15 -06:00
|
|
|
LL | match t {
|
2019-01-06 16:23:57 -06:00
|
|
|
| - this match expression has type `std::option::Option<std::vec::Vec<isize>>`
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | Bar::T1(_, Some::<isize>(x)) => { //~ ERROR mismatched types
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ expected struct `std::vec::Vec`, found isize
|
|
|
|
|
|
|
|
|
= note: expected type `std::option::Option<std::vec::Vec<isize>>`
|
|
|
|
found type `std::option::Option<isize>`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|