2022-04-22 20:05:18 -04:00
|
|
|
/// Test for https://github.com/rust-lang/rust-clippy/issues/3151
|
2019-02-06 07:45:57 +01:00
|
|
|
|
2018-09-08 15:30:50 +02:00
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct HashMap<V, S> {
|
|
|
|
hash_builder: S,
|
|
|
|
table: RawTable<V>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct RawTable<V> {
|
|
|
|
size: usize,
|
2018-12-09 23:26:16 +01:00
|
|
|
val: V,
|
2018-09-08 15:30:50 +02:00
|
|
|
}
|
|
|
|
|
2018-12-09 23:26:16 +01:00
|
|
|
fn main() {}
|