Mark concat_idents! unstable

This is mostly just a documentation fix as I don't think stability
attributes have any effect on macros.
This commit is contained in:
Oliver Middleton 2016-06-21 23:30:15 +01:00
parent fe96928d7d
commit 1cc54d0327

View File

@ -276,7 +276,7 @@ macro_rules! option_env { ($name:expr) => ({ /* compiler built-in */ }) }
/// // fn concat_idents!(new, fun, name) { } // not usable in this way!
/// # }
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
#[unstable(feature = "concat_idents", issue = "29599")]
#[macro_export]
macro_rules! concat_idents {
($($e:ident),*) => ({ /* compiler built-in */ })