diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2016-06-22 09:51:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-22 09:51:09 +0100 |
| commit | c749a3e4b588ccc46d34e0c7b40a1e9a2f374c5b (patch) | |
| tree | f7fdb6ea5e60b03d4a8b7cc26355479c00a98674 /src/libstd | |
| parent | c295a1c7c28e6ff0b83967c065cc00a13f373aa1 (diff) | |
| parent | 1cc54d03270740d797c498cd29536565602dc2dd (diff) | |
| download | rust-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.rs | 2 |
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 */ }) |
