asomers / mockall

A powerful mock object library for Rust
Apache License 2.0
1.5k stars 62 forks source link

Fix some dead_code warnings in the tests with latest nightly compiler #582

Closed asomers closed 4 months ago

asomers commented 4 months ago

These structs are never constructed, and the latest nightly no longer considers a trait impl as enough to keep the struct "live".

https://github.com/rust-lang/rust/pull/125572