#[test]
fn match_arms_to_easily()
{
use to_unit::ToUnit;
use std::collections::HashMap;
let mut x = HashMap::<String, i32>::new();
x.insert("neko".to_string(), 123);
match x.get_mut("neko")
{
Some(v) => *v = 222,
None => x.insert("neko".to_string(), 222).to_unit() }
}
#[test]
fn for_ultra_lazy_persons()
{
use to_unit::__;
use std::collections::HashMap;
let mut x = HashMap::<String, i32>::new();
x.insert("neko".to_string(), 123);
match x.get_mut("neko")
{
Some(v) => *v = 222,
None => x.insert("neko".to_string(), 222).__() }
}