2017-02-07 20:05:30 +00:00
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/entry.rs:13:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
|
13 | if !m.contains_key(&k) { m.insert(k, v); }
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `m.entry(k).or_insert(v)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D map-entry` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/entry.rs:17:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:03:39 +00:00
|
|
|
17 | if !m.contains_key(&k) { foo(); m.insert(k, v); }
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `m.entry(k)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/entry.rs:21:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:03:39 +00:00
|
|
|
21 | if !m.contains_key(&k) { m.insert(k, v) } else { None };
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `m.entry(k)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/entry.rs:25:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:03:39 +00:00
|
|
|
25 | if m.contains_key(&k) { None } else { m.insert(k, v) };
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `m.entry(k)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/entry.rs:29:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:03:39 +00:00
|
|
|
29 | if !m.contains_key(&k) { foo(); m.insert(k, v) } else { None };
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `m.entry(k)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/entry.rs:33:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:03:39 +00:00
|
|
|
33 | if m.contains_key(&k) { None } else { foo(); m.insert(k, v) };
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `m.entry(k)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `BTreeMap`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/entry.rs:37:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:03:39 +00:00
|
|
|
37 | if !m.contains_key(&k) { foo(); m.insert(k, v) } else { None };
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `m.entry(k)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-07-03 04:37:30 +00:00
|
|
|
error: aborting due to 7 previous errors
|
2017-02-07 20:05:30 +00:00
|
|
|
|