diff options
| author | bors <bors@rust-lang.org> | 2024-02-26 14:43:15 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-02-26 14:43:15 +0000 |
| commit | b79db437dccd496948bb1819d36ed51598563a98 (patch) | |
| tree | c8cff87bf2492d99dcd83ca3846dde57f7275853 /compiler/rustc_ast_lowering/src/expr.rs | |
| parent | b8de591b6556836633e0c1bce1f42b90801f4227 (diff) | |
| parent | 34eae07ee52ea0c79b07babc39ae9f139a930091 (diff) | |
| download | rust-b79db437dccd496948bb1819d36ed51598563a98.tar.gz rust-b79db437dccd496948bb1819d36ed51598563a98.zip | |
Auto merge of #120586 - ShE3py:exprkind-err, r=fmease
Add `ErrorGuaranteed` to `ast::ExprKind::Err`
See #119967 for context
```
\
\
_~^~^~_
\) / o o \ (/
'_ - _'
/ '-----' \
```
r? fmease
Diffstat (limited to 'compiler/rustc_ast_lowering/src/expr.rs')
| -rw-r--r-- | compiler/rustc_ast_lowering/src/expr.rs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/compiler/rustc_ast_lowering/src/expr.rs b/compiler/rustc_ast_lowering/src/expr.rs index aafa99b3aa6..9950db4784b 100644 --- a/compiler/rustc_ast_lowering/src/expr.rs +++ b/compiler/rustc_ast_lowering/src/expr.rs @@ -14,6 +14,7 @@ use rustc_ast::*; use rustc_data_structures::stack::ensure_sufficient_stack; use rustc_hir as hir; use rustc_hir::def::{DefKind, Res}; +use rustc_middle::span_bug; use rustc_session::errors::report_lit_error; use rustc_span::source_map::{respan, Spanned}; use rustc_span::symbol::{kw, sym, Ident, Symbol}; @@ -328,9 +329,12 @@ impl<'hir> LoweringContext<'_, 'hir> { ) } ExprKind::Yield(opt_expr) => self.lower_expr_yield(e.span, opt_expr.as_deref()), - ExprKind::Err => { - hir::ExprKind::Err(self.dcx().span_delayed_bug(e.span, "lowered ExprKind::Err")) + ExprKind::Err(guar) => hir::ExprKind::Err(*guar), + + ExprKind::Dummy => { + span_bug!(e.span, "lowered ExprKind::Dummy") } + ExprKind::Try(sub_expr) => self.lower_expr_try(e.span, sub_expr), ExprKind::Paren(_) | ExprKind::ForLoop { .. } => { |
