• bus 2.3.0/src/lib.rs
    223
                // state is no longer safe to access.
    224
                #[allow(clippy::drop_ref)]
    225
                drop(state);
  • cl-generic-vec 0.4.0/src/iter.rs
    39
            let _ = self.try_reserve(iter.size_hint().0);
    40
            #[allow(clippy::drop_ref)]
    41
            iter.for_each(|item| drop(self.push(item)));
  • cstree 0.11.1/tests/it/sendsync.rs
    135
    #[cfg_attr(miri, ignore)]
    136
    #[allow(clippy::drop_ref)]
    137
    fn drop_sync() {
  • derive-into-owned 0.2.0/tests/borrowed.rs
    39
        drop(lives_less);
    40
        #[allow(clippy::drop_ref)]
    41
        drop(lives_longer);
  • dhall 0.12.0/src/error/builder.rs
    117
        // TODO: handle multiple files
    118
        #[allow(clippy::drop_ref)]
    119
        pub fn format(&mut self) -> String {
  • filter_ast 0.2.1/src/visit.rs
    10
            // and the compiler is happy.
    11
            #[allow(clippy::drop_ref)]
    12
            std::mem::drop(clause);
  • genawaiter 0.99.1/src/stack/mod.rs
    466
                // cannot be dropped early.
    467
                #[allow(clippy::drop_ref)]
    468
                drop(gen);
  • generic-vec 0.1.2/src/iter.rs
    39
            let _ = self.try_reserve(iter.size_hint().0);
    40
            #[allow(clippy::drop_ref)]
    41
            iter.for_each(|item| drop(self.push(item)));
    48
            let _ = self.try_reserve(iter.size_hint().0);
    49
            #[allow(clippy::drop_ref)]
    50
            iter.cloned().for_each(|item| drop(self.push(item)));
  • informalsystems-tonic 0.5.2/src/codec/prost.rs
    227
                #[allow(clippy::drop_ref)]
    228
                fn poll_trailers(
  • neptune 8.1.0/src/tree_builder.rs
    146
                            #[allow(clippy::drop_ref)]
    147
                            drop(preimages); // make sure we don't reference tree_data anymore
  • tonic 0.8.3/src/codec/prost.rs
    260
                #[allow(clippy::drop_ref)]
    261
                fn poll_trailers(
  • tonic-arcanyx-fork 0.8.1-alpha.0/src/codec/prost.rs
    227
                #[allow(clippy::drop_ref)]
    228
                fn poll_trailers(
  • wgpu-hal 0.15.1/src/gles/adapter.rs
    572
            // dropping the ref )
    573
            #[allow(clippy::drop_ref)]
    574
            drop(gl);
  • av1an-core 0.4.0/src/lib.rs
    15
    #![allow(clippy::wildcard_imports)]
    16
    #![allow(clippy::drop_ref)]
    17
    #![allow(clippy::unsafe_derive_deserialize)]
  • ptr-union 2.2.2/tests/smoke.rs
    4
    #![allow(clippy::borrowed_box, clippy::drop_ref)]
  • ux-dx 0.2.1/src/lib.rs
    45
        clippy::redundant_clone,
    46
        clippy::drop_ref,
    47
        clippy::should_implement_trait,