summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-16922.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:25:56 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:25:56 +0000
commit018c4950b9406055dec02ef0fb52f132e2bb1e2c (patch)
treea835ebdf2088ef88fa681f8fad45f09922c1ae9a /tests/ui/issues/issue-16922.stderr
parentAdding debian version 1.75.0+dfsg1-5. (diff)
downloadrustc-018c4950b9406055dec02ef0fb52f132e2bb1e2c.tar.xz
rustc-018c4950b9406055dec02ef0fb52f132e2bb1e2c.zip
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/issues/issue-16922.stderr')
-rw-r--r--tests/ui/issues/issue-16922.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/ui/issues/issue-16922.stderr b/tests/ui/issues/issue-16922.stderr
deleted file mode 100644
index 9d9f32a97..000000000
--- a/tests/ui/issues/issue-16922.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error: lifetime may not live long enough
- --> $DIR/issue-16922.rs:4:5
- |
-LL | fn foo<T: Any>(value: &T) -> Box<dyn Any> {
- | - let's call the lifetime of this reference `'1`
-LL | Box::new(value) as Box<dyn Any>
- | ^^^^^^^^^^^^^^^ cast requires that `'1` must outlive `'static`
- |
-help: to declare that the trait object captures data from argument `value`, you can add an explicit `'_` lifetime bound
- |
-LL | fn foo<T: Any>(value: &T) -> Box<dyn Any + '_> {
- | ++++
-
-error: aborting due to previous error
-