• ergo-lib-c-core 0.22.0/src/rest/api/callback.rs
    28
            // free without running the destructor
    29
            #[allow(clippy::forget_non_drop)]
    30
            std::mem::forget(self)
    37
            // free without running the destructor
    38
            #[allow(clippy::forget_non_drop)]
    39
            std::mem::forget(self)
  • xt 0.15.1/src/input.rs
    408
    		// breaks this expectation.
    409
    		#[allow(clippy::forget_non_drop)]
    410
    		std::mem::forget(input_ref);
  • awak 0.2.22/src/waker_fn.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    use std::mem::{self, ManuallyDrop};
  • bevy_arcade_car_controller 0.1.0/src/lib.rs
    1
    // This is a workaround for issue: https://github.com/bevyengine/bevy/issues/4601
    2
    #![allow(clippy::forget_non_drop)]
  • bevy_prototype_lyon 0.7.2/src/lib.rs
    22
    #![allow(clippy::needless_pass_by_value)] // False positives with `SystemParam`s.
    23
    #![allow(clippy::forget_non_drop)]
    24
    #![allow(clippy::missing_const_for_fn)]
  • ress 0.11.5/examples/instruments/bools.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling
  • ress 0.11.5/examples/instruments/comments.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling
  • ress 0.11.5/examples/instruments/idents.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling
  • ress 0.11.5/examples/instruments/keywords.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling
  • ress 0.11.5/examples/instruments/null.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling
  • ress 0.11.5/examples/instruments/numbers.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling
  • ress 0.11.5/examples/instruments/puncts.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling
  • ress 0.11.5/examples/instruments/regexes.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling
  • ress 0.11.5/examples/instruments/strings.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling
  • ress 0.11.5/examples/instruments/templates.rs
    1
    #![allow(clippy::forget_non_drop)]
    2
    // This example exists to allow for profiling