]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_error_messages/locales/en-US/borrowck.ftl
Rollup merge of #98391 - joboet:sgx_parker, r=m-ou-se
[rust.git] / compiler / rustc_error_messages / locales / en-US / borrowck.ftl
index de47ada826444e00644e0edfc357973969a21f20..2cd4733220e829ce4d68d0dc4bb3aee962277608 100644 (file)
@@ -24,9 +24,6 @@ borrowck_var_does_not_need_mut =
     variable does not need to be mutable
     .suggestion = remove this `mut`
 
-borrowck_const_not_used_in_type_alias =
-    const parameter `{$ct}` is part of concrete type but not used in parameter list for the `impl Trait` type alias
-
 borrowck_var_cannot_escape_closure =
     captured variable cannot escape `FnMut` closure body
     .note = `FnMut` closures only have access to their captured variables while they are executing...