]> git.lizzy.rs Git - rust.git/blobdiff - src/libsyntax/parse/mod.rs
Stabilize `param_attrs` in Rust 1.39.0
[rust.git] / src / libsyntax / parse / mod.rs
index bc1bc00ac84054ac0f359bec86e52aafd66ba259..6a8a64f369d9935db783cc09e8a4d86c4f8c698e 100644 (file)
@@ -42,8 +42,6 @@
 /// used and should be feature gated accordingly in `check_crate`.
 #[derive(Default)]
 pub struct GatedSpans {
-    /// Spans collected for gating `param_attrs`, e.g. `fn foo(#[attr] x: u8) {}`.
-    pub param_attrs: Lock<Vec<Span>>,
     /// Spans collected for gating `let_chains`, e.g. `if a && let b = c {}`.
     pub let_chains: Lock<Vec<Span>>,
     /// Spans collected for gating `async_closure`, e.g. `async || ..`.