summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/trait-upcasting/type-checking-test-3.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/trait-upcasting/type-checking-test-3.stderr')
-rw-r--r--src/test/ui/traits/trait-upcasting/type-checking-test-3.stderr18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/traits/trait-upcasting/type-checking-test-3.stderr b/src/test/ui/traits/trait-upcasting/type-checking-test-3.stderr
deleted file mode 100644
index e6cb6a753..000000000
--- a/src/test/ui/traits/trait-upcasting/type-checking-test-3.stderr
+++ /dev/null
@@ -1,18 +0,0 @@
-error: lifetime may not live long enough
- --> $DIR/type-checking-test-3.rs:11:13
- |
-LL | fn test_wrong1<'a>(x: &dyn Foo<'static>, y: &'a u32) {
- | -- lifetime `'a` defined here
-LL | let _ = x as &dyn Bar<'a>; // Error
- | ^^^^^^^^^^^^^^^^^ type annotation requires that `'a` must outlive `'static`
-
-error: lifetime may not live long enough
- --> $DIR/type-checking-test-3.rs:16:13
- |
-LL | fn test_wrong2<'a>(x: &dyn Foo<'a>) {
- | -- lifetime `'a` defined here
-LL | let _ = x as &dyn Bar<'static>; // Error
- | ^^^^^^^^^^^^^^^^^^^^^^ type annotation requires that `'a` must outlive `'static`
-
-error: aborting due to 2 previous errors
-