diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-10-17 12:07:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-17 12:07:19 +0200 |
| commit | 21c57f54909a0792f6e0eb30d849e3e7182ca59e (patch) | |
| tree | 50e5a7f6b260be851927417e1caa78e887bdfe44 /compiler/rustc_hir_analysis/messages.ftl | |
| parent | 06d261daf62620e3449ba451898c7ad9ae750f41 (diff) | |
| parent | b89c6204da4331d5d7c181e5c999cd34bfc54e10 (diff) | |
| download | rust-21c57f54909a0792f6e0eb30d849e3e7182ca59e.tar.gz rust-21c57f54909a0792f6e0eb30d849e3e7182ca59e.zip | |
Rollup merge of #128391 - cafce25:issue-128390, r=lcnr
Change orphan hint from "only" to "any uncovered type inside..." Fix #128390
Diffstat (limited to 'compiler/rustc_hir_analysis/messages.ftl')
| -rw-r--r-- | compiler/rustc_hir_analysis/messages.ftl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/rustc_hir_analysis/messages.ftl b/compiler/rustc_hir_analysis/messages.ftl index a9f30ffd6da..507297ce162 100644 --- a/compiler/rustc_hir_analysis/messages.ftl +++ b/compiler/rustc_hir_analysis/messages.ftl @@ -356,12 +356,14 @@ hir_analysis_only_current_traits_arbitrary = only traits defined in the current hir_analysis_only_current_traits_foreign = this is not defined in the current crate because this is a foreign trait -hir_analysis_only_current_traits_label = impl doesn't use only types from inside the current crate - hir_analysis_only_current_traits_name = this is not defined in the current crate because {$name} are always foreign hir_analysis_only_current_traits_note = define and implement a trait or new type instead +hir_analysis_only_current_traits_note_more_info = for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules + +hir_analysis_only_current_traits_note_uncovered = impl doesn't have any local type before any uncovered type parameters + hir_analysis_only_current_traits_opaque = type alias impl trait is treated as if it were foreign, because its hidden type could be from a foreign crate hir_analysis_only_current_traits_outside = only traits defined in the current crate can be implemented for types defined outside of the crate |
