mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
259 B
Rust
10 lines
259 B
Rust
// check that we substitute type parameters before we suggest anything - otherwise
|
|
// we would suggest function such as `as_slice` for the `&[u16]`.
|
|
|
|
fn foo(b: &[u16]) {}
|
|
|
|
fn main() {
|
|
let a: Vec<u8> = Vec::new();
|
|
foo(&a); //~ ERROR mismatched types
|
|
}
|