blob: bc7d1247502d3be9b70065d1f9f1baf483c015e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0308]: mismatched types
--> $DIR/issue-11374.rs:26:15
|
LL | c.read_to(v);
| ^
| |
| expected `&mut [u8]`, found struct `std::vec::Vec`
| help: consider mutably borrowing here: `&mut v`
|
= note: expected mutable reference `&mut [u8]`
found struct `std::vec::Vec<_>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|