// SPDX-FileCopyrightText: 2025 LunNova
//
// SPDX-License-Identifier: MIT
pub use pattern_wishcast;
/// An uninhabited type for use in pattern-wishcast generated code.
///
/// When the `never_type` feature is enabled, this is an alias to the unstable never type (`!`).
/// Otherwise, this is a stable equivalent enum that works on stable Rust.
pub type Never = !;
/// An uninhabited type for use in pattern-wishcast generated code.
///
/// When the `never_type` feature is enabled, this is an alias to the unstable never type (`!`).
/// Otherwise, this is a stable equivalent enum that works on stable Rust.