1//! Definitions of panic cases 2 3pub const fn panic_divide_by_0() -> ! { 4 panic!("Divisor or denominator must not be zero!") 5}