about summary refs log tree commit diff
path: root/compiler/rustc_hir_analysis/src/errors.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2022-12-27 00:39:36 +0000
committerMichael Goulet <michael@errs.io>2023-01-11 20:12:57 +0000
commitc8334ce60cce9571fcfdea31a3e67e3933fb7665 (patch)
tree1f63730aeb8a6734ac3aaec57a44238e003a246b /compiler/rustc_hir_analysis/src/errors.rs
parentef4046e4f3932991971cdb64915172899532aece (diff)
downloadrust-c8334ce60cce9571fcfdea31a3e67e3933fb7665.tar.gz
rust-c8334ce60cce9571fcfdea31a3e67e3933fb7665.zip
Move autoderef to rustc_hir_analysis
Diffstat (limited to 'compiler/rustc_hir_analysis/src/errors.rs')
-rw-r--r--compiler/rustc_hir_analysis/src/errors.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/compiler/rustc_hir_analysis/src/errors.rs b/compiler/rustc_hir_analysis/src/errors.rs
index d383fcacb3a..04f5f3f6276 100644
--- a/compiler/rustc_hir_analysis/src/errors.rs
+++ b/compiler/rustc_hir_analysis/src/errors.rs
@@ -300,3 +300,15 @@ pub(crate) struct LinkageType {
     #[primary_span]
     pub span: Span,
 }
+
+#[derive(Diagnostic)]
+#[help]
+#[diag(hir_analysis_auto_deref_reached_recursion_limit, code = "E0055")]
+pub struct AutoDerefReachedRecursionLimit<'a> {
+    #[primary_span]
+    #[label]
+    pub span: Span,
+    pub ty: Ty<'a>,
+    pub suggested_limit: rustc_session::Limit,
+    pub crate_name: Symbol,
+}