#![allow(unused_variables)] fn main() { let mut s = String::from("f_o_ob_ar"); s.retain(|c| c != '_'); assert_eq!(s, "foobar"); }