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