Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
suggestions
/
deref-path-method.rs
blob: 0281cdb6b37cfda0f2522fff50858379196c1d99 [
file
]
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 `[_]`
}