2020-09-30 13:24:50 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/slice-to-vec-comparison.rs:4:9
|
|
|
|
|
|
|
|
|
LL | a > b;
|
2023-01-02 20:00:33 -06:00
|
|
|
| ^ expected `&[_; 0]`, found `&Vec<u8>`
|
2020-09-30 13:24:50 -05:00
|
|
|
|
|
|
|
|
= note: expected reference `&[_; 0]`
|
|
|
|
found reference `&Vec<u8>`
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2020-09-30 13:24:50 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|