blob: fef4d7db84ddf0d23a5671dab0d0791b6bf90db5 [file] [log] [blame]
/// Test for https://github.com/rust-lang/rust-clippy/issues/2865
#[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() {}