From: Oliver Middleton Date: Tue, 21 Jun 2016 22:30:15 +0000 (+0100) Subject: Mark concat_idents! unstable X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=1cc54d03270740d797c498cd29536565602dc2dd;p=rust.git Mark concat_idents! unstable This is mostly just a documentation fix as I don't think stability attributes have any effect on macros. --- diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index d69789cedaf..26cf8a3199d 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -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 */ })