about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2018-11-25 17:05:00 +0100
committerGitHub <noreply@github.com>2018-11-25 17:05:00 +0100
commitb16d8eb3f2e42a720d9da5aff7119b2fd2b4805b (patch)
treea112a73d32f1f41eafd0bcc4bd570d0ce9140d8a /src/doc
parent6c2513c0d38c8690ef0d2f9d024fafa2391671db (diff)
parentb8ae7b801bf1f3d298493b2e7e1328a1a7ecace7 (diff)
downloadrust-b16d8eb3f2e42a720d9da5aff7119b2fd2b4805b.tar.gz
rust-b16d8eb3f2e42a720d9da5aff7119b2fd2b4805b.zip
Rollup merge of #56072 - da-x:stabilize-literal-matcher, r=petrochenkov
Stabilize macro_literal_matcher

This followed FCP in #35625.

Closes #35625
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
-
-------------------------