diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2024-12-06 19:43:01 +0000 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2024-12-09 21:55:13 +0000 |
| commit | 148a77dfde03dba553b2e4f3cf817cd6d105b3e6 (patch) | |
| tree | 016057d45826592ba0cfefbb119ec8f50183f1ae /compiler/rustc_resolve/src | |
| parent | e0752ad2572218dfc7764951b72d4e3e84ea842c (diff) | |
| download | rust-148a77dfde03dba553b2e4f3cf817cd6d105b3e6.tar.gz rust-148a77dfde03dba553b2e4f3cf817cd6d105b3e6.zip | |
review comments: rewordings
Diffstat (limited to 'compiler/rustc_resolve/src')
| -rw-r--r-- | compiler/rustc_resolve/src/late.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/late.rs b/compiler/rustc_resolve/src/late.rs index f5e1a598864..789d74876f7 100644 --- a/compiler/rustc_resolve/src/late.rs +++ b/compiler/rustc_resolve/src/late.rs @@ -752,7 +752,7 @@ impl<'ra: 'ast, 'ast, 'tcx> Visitor<'ast> for LateResolutionVisitor<'_, 'ast, 'r self.parent_scope.macro_rules = old_macro_rules; } fn visit_anon_const(&mut self, constant: &'ast AnonConst) { - bug!("encountered anon const without a manual call to `resolve_anon_const` {constant:#?}"); + bug!("encountered anon const without a manual call to `resolve_anon_const`: {constant:#?}"); } fn visit_expr(&mut self, expr: &'ast Expr) { self.resolve_expr(expr, None); |
