diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2018-08-30 20:15:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-30 20:15:34 +0200 |
| commit | 3ee762870f75ba73ea1cf8c17678ef7fc69e8ceb (patch) | |
| tree | cadd047652c0effb9a10f11782ae8cbd5a19ac04 /src/libsyntax | |
| parent | 1535075b58bc725ea71dc0103bda5b840632e957 (diff) | |
| parent | 9395a02b5aba108ce015f4baa761b8927f91d3d0 (diff) | |
| download | rust-3ee762870f75ba73ea1cf8c17678ef7fc69e8ceb.tar.gz rust-3ee762870f75ba73ea1cf8c17678ef7fc69e8ceb.zip | |
Rollup merge of #53702 - jkozlowski:correct_version_for_macro_vis_matcher, r=cramertj
Fix stabilisation version for macro_vis_matcher. r? @cramertj
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index bb5d929a323..080860f17f5 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -645,7 +645,7 @@ declare_features! ( // Defining procedural macros in `proc-macro` crates (accepted, proc_macro, "1.29.0", Some(38356), None), // Allows use of the :vis macro fragment specifier - (accepted, macro_vis_matcher, "1.29.0", Some(41022), None), + (accepted, macro_vis_matcher, "1.30.0", Some(41022), None), // Allows importing and reexporting macros with `use`, // enables macro modularization in general. (accepted, use_extern_macros, "1.30.0", Some(35896), None), |
