We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26488b7 commit 523a28dCopy full SHA for 523a28d
src/libsyntax/parse/obsolete.rs
@@ -34,7 +34,6 @@ pub enum ObsoleteSyntax {
34
ObsoleteBareFnType,
35
ObsoleteNamedExternModule,
36
ObsoleteMultipleLocalDecl,
37
- ObsoleteMutWithMultipleBindings,
38
ObsoleteUnsafeExternFn,
39
ObsoleteTraitFuncVisibility,
40
ObsoleteConstPointer,
@@ -91,11 +90,6 @@ impl ParserObsoleteMethods for Parser {
91
90
"instead of e.g. `let a = 1, b = 2`, write \
92
`let (a, b) = (1, 2)`."
93
),
94
- ObsoleteMutWithMultipleBindings => (
95
- "`mut` with multiple bindings",
96
- "use multiple local declarations instead of e.g. `let mut \
97
- (x, y) = ...`."
98
- ),
99
ObsoleteUnsafeExternFn => (
100
"unsafe external function",
101
"external functions are always unsafe; remove the `unsafe` \
0 commit comments