#[ test ] fn not() { let mut x = BoundsInlined::< bool, u8 > { a : true, b : 0 }; x = !x; assert_eq!( x.a, false ); assert_eq!( x.b, 255 ); }