diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2018-10-10 15:59:20 -0700 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2018-10-10 15:59:20 -0700 |
| commit | 50e410c240bc8f147e7bf1efb5741d41c67e6328 (patch) | |
| tree | b9dc45ca13fbd2063b9283881d790ec790e6f45d /src/libsyntax | |
| parent | 8ebc6d6dbbfe1ccc9a72d003d13c3d267c91c742 (diff) | |
| parent | ffe15277ff182b1981b2d46264882bca31b89d13 (diff) | |
| download | rust-50e410c240bc8f147e7bf1efb5741d41c67e6328.tar.gz rust-50e410c240bc8f147e7bf1efb5741d41c67e6328.zip | |
Rollup merge of #54870 - flip1995:stabilize_tool_lints, r=Manishearth
Fixes #47311. r? @nrc
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index c786691ac1b..b86b92fb29e 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -433,9 +433,6 @@ declare_features! ( // #[doc(alias = "...")] (active, doc_alias, "1.27.0", Some(50146), None), - // Scoped lints - (active, tool_lints, "1.28.0", Some(44690), None), - // Allows irrefutable patterns in if-let and while-let statements (RFC 2086) (active, irrefutable_let_patterns, "1.27.0", Some(44495), None), @@ -682,6 +679,8 @@ declare_features! ( (accepted, pattern_parentheses, "1.31.0", Some(51087), None), // Allows the definition of `const fn` functions. (accepted, min_const_fn, "1.31.0", Some(53555), None), + // Scoped lints + (accepted, tool_lints, "1.31.0", Some(44690), None), ); // If you change this, please modify src/doc/unstable-book as well. You must |
