// SPDX-License-Identifier: Apache-2.0 OR MIT
//! Panic support.
//!
//! This module is a subset of the [`std::panic`] module.
//!
//! [`std::panic`]: https://doc.rust-lang.org/std/panic/index.html
use Box;
use Any;
use crate;
pub static PANICKED: AtomicUsize = new;
/// Invokes a closure, capturing the cause of an unwinding panic if one occurs.