rust-2015 1.0.1

Macro to use Rust 2015 from all editions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! See [the `edition` crate](https://docs.rs/edition/).

extern crate reedition;

#[macro_export]
macro_rules! rust_2015 {
    ($($t:tt)*) => {
        $crate::__export::reedition! {
            hello
            ($($t)*)
        }
    }
}

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