diff options
| author | bors <bors@rust-lang.org> | 2024-07-12 01:18:12 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-07-12 01:18:12 +0000 |
| commit | 4a31a6c32a9a0e726516b1086f33e3d4a37dc94c (patch) | |
| tree | 35c092b39b4b9df142377490e05d854dc470abb2 /compiler/rustc_resolve/src/lib.rs | |
| parent | 5e311f933d844b6922256a0c0aa49b86159534f5 (diff) | |
| parent | 4df75140dde8776fb4e371a28474d899524d99e5 (diff) | |
| download | rust-4a31a6c32a9a0e726516b1086f33e3d4a37dc94c.tar.gz rust-4a31a6c32a9a0e726516b1086f33e3d4a37dc94c.zip | |
Auto merge of #127382 - estebank:const-let, r=compiler-errors
Use verbose style when suggesting changing `const` with `let`
Diffstat (limited to 'compiler/rustc_resolve/src/lib.rs')
| -rw-r--r-- | compiler/rustc_resolve/src/lib.rs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/compiler/rustc_resolve/src/lib.rs b/compiler/rustc_resolve/src/lib.rs index 7cb5a3fb2fd..3dcb83d65b0 100644 --- a/compiler/rustc_resolve/src/lib.rs +++ b/compiler/rustc_resolve/src/lib.rs @@ -236,11 +236,12 @@ enum ResolutionError<'a> { /// Error E0434: can't capture dynamic environment in a fn item. CannotCaptureDynamicEnvironmentInFnItem, /// Error E0435: attempt to use a non-constant value in a constant. - AttemptToUseNonConstantValueInConstant( - Ident, - /* suggestion */ &'static str, - /* current */ &'static str, - ), + AttemptToUseNonConstantValueInConstant { + ident: Ident, + suggestion: &'static str, + current: &'static str, + type_span: Option<Span>, + }, /// Error E0530: `X` bindings cannot shadow `Y`s. BindingShadowsSomethingUnacceptable { shadowing_binding: PatternSource, |
