Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-3151.rs
blob: 268ba86fc7aa80756b1aa151b1aff72949a4d75c [
file
] [
log
] [
blame
]
/// Test for https://github.com/rust-lang/rust-clippy/issues/3151
#[
derive
(
Clone
)]
pub
struct
HashMap
<
V
,
S
>
{
hash_builder
:
S
,
table
:
RawTable
<
V
>,
}
#[
derive
(
Clone
)]
pub
struct
RawTable
<
V
>
{
size
:
usize
,
val
:
V
,
}
fn
main
()
{}