mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
15 lines
246 B
Rust
15 lines
246 B
Rust
/// 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() {}
|