Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-3717.rs
blob: c612270865c572ea306933179e1f16ea3e3b307a [
file
] [
log
] [
blame
]
#![
deny
(
clippy
::
implicit_hasher
)]
use
std
::
collections
::
HashSet
;
fn
main
()
{}
pub
fn
ice_3717
(
_
:
&
HashSet
<
usize
>)
{
//~^ implicit_hasher
let
_
=
[
0u8
;
0
];
let
_
:
HashSet
<
usize
>
=
HashSet
::
new
();
}