• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /// Test for https://github.com/rust-lang/rust-clippy/issues/3151
2 
3 #[derive(Clone)]
4 pub struct HashMap<V, S> {
5     hash_builder: S,
6     table: RawTable<V>,
7 }
8 
9 #[derive(Clone)]
10 pub struct RawTable<V> {
11     size: usize,
12     val: V,
13 }
14 
main()15 fn main() {}
16