about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorDan Aloni <alonid@gmail.com>2018-11-19 16:32:18 +0200
committerDan Aloni <alonid@gmail.com>2018-11-21 21:31:46 +0200
commitfc284c1eee0180903fe11463dcee06e414202cf7 (patch)
tree2fe1bd7e903b7c03f05582ef34d435ca7a398f85 /src/doc
parent910ec6d97ff03549c22352d7763be02b60d73470 (diff)
downloadrust-fc284c1eee0180903fe11463dcee06e414202cf7.tar.gz
rust-fc284c1eee0180903fe11463dcee06e414202cf7.zip
Stabilize macro_literal_matcher
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/unstable-book/src/language-features/macro-literal-matcher.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/doc/unstable-book/src/language-features/macro-literal-matcher.md b/src/doc/unstable-book/src/language-features/macro-literal-matcher.md
deleted file mode 100644
index 870158200de..00000000000
--- a/src/doc/unstable-book/src/language-features/macro-literal-matcher.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# `macro_literal_matcher`
-
-The tracking issue for this feature is: [#35625]
-
-The RFC is: [rfc#1576].
-
-With this feature gate enabled, the [list of designators] gains one more entry:
-
-* `literal`: a literal. Examples: 2, "string", 'c'
-
-A `literal` may be followed by anything, similarly to the `ident` specifier.
-
-[rfc#1576]: http://rust-lang.github.io/rfcs/1576-macros-literal-matcher.html
-[#35625]: https://github.com/rust-lang/rust/issues/35625
-[list of designators]: ../reference/macros-by-example.html
-
-------------------------