summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coercion/issue-53475.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coercion/issue-53475.stderr')
-rw-r--r--src/test/ui/coercion/issue-53475.stderr14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/coercion/issue-53475.stderr b/src/test/ui/coercion/issue-53475.stderr
deleted file mode 100644
index 522c50dca..000000000
--- a/src/test/ui/coercion/issue-53475.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-error[E0310]: the parameter type `T` may not live long enough
- --> $DIR/issue-53475.rs:10:1
- |
-LL | impl<T> CoerceUnsized<Foo<dyn Any>> for Foo<T> {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
- |
-help: consider adding an explicit lifetime bound...
- |
-LL | impl<T: 'static> CoerceUnsized<Foo<dyn Any>> for Foo<T> {}
- | +++++++++
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0310`.