Skip to content

Commit fcd5ed2

Browse files
committed
fix dropping diagnostic without emit
1 parent e590b93 commit fcd5ed2

File tree

1 file changed

+2
-1
lines changed
  • compiler/rustc_parse/src/parser

1 file changed

+2
-1
lines changed

compiler/rustc_parse/src/parser/ty.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,8 @@ impl<'a> Parser<'a> {
941941
&& let Some(path) = self.recover_path_from_fn()
942942
{
943943
path
944-
} else if !self.token.is_path_start() && self.token.can_begin_type() && let Ok(ty) = self.parse_ty_no_plus() {
944+
} else if !self.token.is_path_start() && self.token.can_begin_type() {
945+
let ty = self.parse_ty_no_plus()?;
945946
// Instead of finding a path (a trait), we found a type.
946947
let mut err = self.struct_span_err(ty.span, "expected a trait, found type");
947948

0 commit comments

Comments
 (0)