rust_2015/
lib.rs

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