mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
7 lines
244 B
Rust
7 lines
244 B
Rust
fn main() {
|
|
let vec = Vec::new();
|
|
Vec::contains(&vec, &0);
|
|
//~^ ERROR no function or associated item named `contains` found for struct `Vec<_, _>` in the current scope
|
|
//~| HELP the function `contains` is implemented on `[_]`
|
|
}
|