Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore clippy::redundant_clone lint in example
rust-lang/rust-clippy#10545 ``` warning: redundant clone --> examples/const_fn/src/lib.rs:25:38 | 25 | let mut function = const_function.clone(); | ^^^^^^^^ help: remove this | note: cloned value is neither consumed nor mutated --> examples/const_fn/src/lib.rs:25:24 | 25 | let mut function = const_function.clone(); | ^^^^^^^^^^^^^^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone = note: `#[warn(clippy::redundant_clone)]` on by default ```
- Loading branch information