rust-clippy/tests/run-pass/ice-3151.rs

14 lines
179 B
Rust
Raw Normal View History

#[derive(Clone)]
pub struct HashMap<V, S> {
hash_builder: S,
table: RawTable<V>,
}
#[derive(Clone)]
pub struct RawTable<V> {
size: usize,
2018-12-09 22:26:16 +00:00
val: V,
}
2018-12-09 22:26:16 +00:00
fn main() {}