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