rust-2018 1.0.0

Macro to use Rust 2018 from all editions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_export]
macro_rules! rust_2018 {
    ($($t:tt)*) => {
        $crate::__export::reedition!(
            hello
            ($($t)*)
        )
    }
}

#[doc(hidden)]
pub mod __export {
    pub use reedition::reedition;
}