// run-pass /// Test for https://github.com/rust-lang/rust-clippy/issues/2865 #[derive(Clone)] pub struct HashMap { hash_builder: S, table: RawTable, } #[derive(Clone)] pub struct RawTable { size: usize, val: V, } fn main() {}