about summary refs log tree commit diff
path: root/src/libstd/macros.rs
diff options
context:
space:
mode:
authorOliver Middleton <olliemail27@gmail.com>2016-06-21 23:30:15 +0100
committerOliver Middleton <olliemail27@gmail.com>2016-06-21 23:30:15 +0100
commit1cc54d03270740d797c498cd29536565602dc2dd (patch)
tree2290451015864344b63e9f2f9e744e054cd6e6ac /src/libstd/macros.rs
parentfe96928d7de991e527a7ed7b88bb30aa965c8a08 (diff)
downloadrust-1cc54d03270740d797c498cd29536565602dc2dd.tar.gz
rust-1cc54d03270740d797c498cd29536565602dc2dd.zip
Mark concat_idents! unstable
This is mostly just a documentation fix as I don't think stability
attributes have any effect on macros.
Diffstat (limited to 'src/libstd/macros.rs')
-rw-r--r--src/libstd/macros.rs2
1 files changed, 1 insertions, 1 deletions
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 @@ pub mod builtin {
     /// // 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 */ })