//! # [Tenth Amendment](AMENDMENT10)
//!
//! The powers not delegated to the United States by the Constitution, nor prohibited by it to the States, are reserved to the States respectively, or to the people.
use once_cell::sync::Lazy;
/// # Tenth Amendment
///
/// The powers not delegated to the United States by the Constitution, nor prohibited by it to the States, are reserved to the States respectively, or to the people.
pub static AMENDMENT10: Lazy<&'static str> = Lazy::new(
|| r#"The powers not delegated to the United States by the Constitution, nor prohibited by it to the States, are reserved to the States respectively, or to the people."#,
);