summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/entry_btree.stderr
blob: 5c6fcdf1a28c01f1ba0cbdd646bfb48453cde0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: usage of `contains_key` followed by `insert` on a `BTreeMap`
  --> $DIR/entry_btree.rs:12:5
   |
LL | /     if !m.contains_key(&k) {
LL | |         m.insert(k, v);
LL | |         foo();
LL | |     }
   | |_____^
   |
   = note: `-D clippy::map-entry` implied by `-D warnings`
help: try this
   |
LL ~     if let std::collections::btree_map::Entry::Vacant(e) = m.entry(k) {
LL +         e.insert(v);
LL +         foo();
LL +     }
   |

error: aborting due to previous error