]> git.lizzy.rs Git - rust.git/blob - src/doc/unstable-book/src/macro-vis-matcher.md
Auto merge of #41282 - arielb1:missing-impl-item, r=petrochenkov
[rust.git] / src / doc / unstable-book / src / macro-vis-matcher.md
1 # `macro_vis_matcher`
2
3 The tracking issue for this feature is: [#41022]
4
5 With this feature gate enabled, the [list of fragment specifiers][frags] gains one more entry:
6
7 * `vis`: a visibility qualifier. Examples: nothing (default visibility); `pub`; `pub(crate)`.
8
9 A `vis` variable may be followed by a comma, ident, type, or path.
10
11 [#41022]: https://github.com/rust-lang/rust/issues/41022
12 [frags]: ../book/first-edition/macros.html#syntactic-requirements
13
14 ------------------------