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