#![allow(dead_code, deprecated, unused_variables, unused_mut)] use std::ops::Bound::*; fn main() { let bound_string = Included("Hello, World!"); assert_eq!(bound_string.map(| s | s.len()), Included(13)); }