1//! See [the `edition` crate](https://docs.rs/edition/). 2 3#[macro_export] 4macro_rules! rust_2021 { 5 ($($t:tt)*) => { 6 $crate::__export::reedition! { 7 hello 8 ($($t)*) 9 } 10 } 11} 12 13#[doc(hidden)] 14pub mod __export { 15 pub use reedition::reedition; 16}