Skip to content

Commit 523a28d

Browse files
committed
libsyntax: Get rid of obsolete obsolete warning.
1 parent 26488b7 commit 523a28d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/libsyntax/parse/obsolete.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ pub enum ObsoleteSyntax {
3434
ObsoleteBareFnType,
3535
ObsoleteNamedExternModule,
3636
ObsoleteMultipleLocalDecl,
37-
ObsoleteMutWithMultipleBindings,
3837
ObsoleteUnsafeExternFn,
3938
ObsoleteTraitFuncVisibility,
4039
ObsoleteConstPointer,
@@ -91,11 +90,6 @@ impl ParserObsoleteMethods for Parser {
9190
"instead of e.g. `let a = 1, b = 2`, write \
9291
`let (a, b) = (1, 2)`."
9392
),
94-
ObsoleteMutWithMultipleBindings => (
95-
"`mut` with multiple bindings",
96-
"use multiple local declarations instead of e.g. `let mut \
97-
(x, y) = ...`."
98-
),
9993
ObsoleteUnsafeExternFn => (
10094
"unsafe external function",
10195
"external functions are always unsafe; remove the `unsafe` \

0 commit comments

Comments
 (0)