1 2 3 4 5 6 7 8 9 10
#[ test ] fn not() { let mut x = StructTuple( true, 0 ); x = !x; assert_eq!( x.0, false ); assert_eq!( x.1, 255 ); }