summaryrefslogtreecommitdiffstats
path: root/src/test/ui/variance/variance-covariant-self-trait-match.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/variance/variance-covariant-self-trait-match.stderr')
-rw-r--r--src/test/ui/variance/variance-covariant-self-trait-match.stderr28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/ui/variance/variance-covariant-self-trait-match.stderr b/src/test/ui/variance/variance-covariant-self-trait-match.stderr
deleted file mode 100644
index 9b7ba3b66..000000000
--- a/src/test/ui/variance/variance-covariant-self-trait-match.stderr
+++ /dev/null
@@ -1,28 +0,0 @@
-error: lifetime may not live long enough
- --> $DIR/variance-covariant-self-trait-match.rs:14:5
- |
-LL | fn get_min_from_max<'min, 'max, G>()
- | ---- ---- lifetime `'max` defined here
- | |
- | lifetime `'min` defined here
-...
-LL | impls_get::<&'min G>();
- | ^^^^^^^^^^^^^^^^^^^^ requires that `'min` must outlive `'max`
- |
- = help: consider adding the following bound: `'min: 'max`
-
-error: lifetime may not live long enough
- --> $DIR/variance-covariant-self-trait-match.rs:21:5
- |
-LL | fn get_max_from_min<'min, 'max, G>()
- | ---- ---- lifetime `'max` defined here
- | |
- | lifetime `'min` defined here
-...
-LL | impls_get::<&'max G>();
- | ^^^^^^^^^^^^^^^^^^^^ requires that `'min` must outlive `'max`
- |
- = help: consider adding the following bound: `'min: 'max`
-
-error: aborting due to 2 previous errors
-