summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/min_rust_version/min_rust_version.stderr
blob: 5bf2bcd3bc6162ae92ebc1b1c3259110b2453753 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: you are using an explicit closure for cloning elements
  --> $DIR/min_rust_version.rs:74:26
   |
LL |     let _: Option<u64> = Some(&16).map(|b| *b);
   |                          ^^^^^^^^^^^^^^^^^^^^^ help: consider calling the dedicated `cloned` method: `Some(&16).cloned()`
   |
   = note: `-D clippy::map-clone` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::map_clone)]`

error: aborting due to 1 previous error