summaryrefslogtreecommitdiffstats
path: root/tests/ui/autoref-autoderef/issue-38940.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/autoref-autoderef/issue-38940.stderr')
-rw-r--r--tests/ui/autoref-autoderef/issue-38940.stderr23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/ui/autoref-autoderef/issue-38940.stderr b/tests/ui/autoref-autoderef/issue-38940.stderr
deleted file mode 100644
index 8e98bfcd9..000000000
--- a/tests/ui/autoref-autoderef/issue-38940.stderr
+++ /dev/null
@@ -1,23 +0,0 @@
-error[E0055]: reached the recursion limit while auto-dereferencing `J`
- --> $DIR/issue-38940.rs:49:22
- |
-LL | let x: &Bottom = &t;
- | ^^ deref recursion limit reached
- |
- = help: consider increasing the recursion limit by adding a `#![recursion_limit = "20"]` attribute to your crate (`issue_38940`)
-
-error[E0308]: mismatched types
- --> $DIR/issue-38940.rs:49:22
- |
-LL | let x: &Bottom = &t;
- | ------- ^^ expected `&Bottom`, found `&Top`
- | |
- | expected due to this
- |
- = note: expected reference `&Bottom`
- found reference `&Top`
-
-error: aborting due to 2 previous errors
-
-Some errors have detailed explanations: E0055, E0308.
-For more information about an error, try `rustc --explain E0055`.