about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-06-22 09:51:09 +0100
committerGitHub <noreply@github.com>2016-06-22 09:51:09 +0100
commitc749a3e4b588ccc46d34e0c7b40a1e9a2f374c5b (patch)
treef7fdb6ea5e60b03d4a8b7cc26355479c00a98674 /src/libstd
parentc295a1c7c28e6ff0b83967c065cc00a13f373aa1 (diff)
parent1cc54d03270740d797c498cd29536565602dc2dd (diff)
downloadrust-c749a3e4b588ccc46d34e0c7b40a1e9a2f374c5b.tar.gz
rust-c749a3e4b588ccc46d34e0c7b40a1e9a2f374c5b.zip
Rollup merge of #34404 - ollie27:concat_idents, r=alexcrichton
Mark concat_idents! unstable

This is mostly just a documentation fix as I don't think stability
attributes have any effect on macros.

[before](https://doc.rust-lang.org/nightly/std/macro.concat_idents!.html) [after](https://ollie27.github.io/rust_doc_test/std/macro.concat_idents!.html)
Diffstat (limited to 'src/libstd')
-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 */ })