2017-08-16 13:23:44 -05:00
|
|
|
// 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();
|
2017-11-20 06:13:27 -06:00
|
|
|
foo(&a); //~ ERROR mismatched types
|
2017-08-16 13:23:44 -05:00
|
|
|
}
|