#![allow(dead_code, deprecated, unused_variables, unused_mut)] fn main() { assert_eq!(2u8.next_power_of_two(), 2); assert_eq!(3u8.next_power_of_two(), 4); assert_eq!(0u8.next_power_of_two(), 1); }