about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser/path.rs
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2025-04-16 20:03:18 +1000
committerZalathar <Zalathar@users.noreply.github.com>2025-04-16 20:24:55 +1000
commit4d6ae78fa22d04b2c255cb43faabc1ada36cd2c1 (patch)
tree832f93c3fd60cf866c694d44e285f0526159db56 /compiler/rustc_parse/src/parser/path.rs
parentefb1e3d676e1549811da79ebd124b6fc4d856248 (diff)
downloadrust-4d6ae78fa22d04b2c255cb43faabc1ada36cd2c1.tar.gz
rust-4d6ae78fa22d04b2c255cb43faabc1ada36cd2c1.zip
Remove old diagnostic notes for type ascription syntax
Type ascription syntax was removed in 2023.
Diffstat (limited to 'compiler/rustc_parse/src/parser/path.rs')
-rw-r--r--compiler/rustc_parse/src/parser/path.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_parse/src/parser/path.rs b/compiler/rustc_parse/src/parser/path.rs
index 30fb96c6ea9..02883655662 100644
--- a/compiler/rustc_parse/src/parser/path.rs
+++ b/compiler/rustc_parse/src/parser/path.rs
@@ -273,7 +273,6 @@ impl<'a> Parser<'a> {
                         self.dcx().emit_err(PathSingleColon {
                             span: self.prev_token.span,
                             suggestion: self.prev_token.span.shrink_to_hi(),
-                            type_ascription: self.psess.unstable_features.is_nightly_build(),
                         });
                     }
                     continue;
@@ -348,7 +347,6 @@ impl<'a> Parser<'a> {
                             err = self.dcx().create_err(PathSingleColon {
                                 span: self.token.span,
                                 suggestion: self.prev_token.span.shrink_to_hi(),
-                                type_ascription: self.psess.unstable_features.is_nightly_build(),
                             });
                         }
                         // Attempt to find places where a missing `>` might belong.