rust/src/test/ui/pattern/pattern-tyvar.stderr

13 lines
461 B
Plaintext
Raw Normal View History

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
|
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`.