Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-3151.rs
blob: f0c57d2f19f46e5bdc1449ed66dc83e84946a292 [
file
] [
log
] [
blame
]
//@ check-pass
// 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
()
{}