mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
19 lines
326 B
Rust
19 lines
326 B
Rust
|
// run-rustfix
|
||
|
|
||
|
#![warn(clippy::map_entry)]
|
||
|
#![allow(dead_code)]
|
||
|
|
||
|
use std::collections::BTreeMap;
|
||
|
|
||
|
fn foo() {}
|
||
|
|
||
|
fn btree_map<K: Eq + Ord + Copy, V: Copy>(m: &mut BTreeMap<K, V>, k: K, v: V) {
|
||
|
// insert then do something, use if let
|
||
|
if !m.contains_key(&k) {
|
||
|
m.insert(k, v);
|
||
|
foo();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|