summaryrefslogtreecommitdiffstats
path: root/src/test/ui/variance/variance-use-contravariant-struct-1.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/variance/variance-use-contravariant-struct-1.stderr')
-rw-r--r--src/test/ui/variance/variance-use-contravariant-struct-1.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/variance/variance-use-contravariant-struct-1.stderr b/src/test/ui/variance/variance-use-contravariant-struct-1.stderr
deleted file mode 100644
index 50de7c90f..000000000
--- a/src/test/ui/variance/variance-use-contravariant-struct-1.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error: lifetime may not live long enough
- --> $DIR/variance-use-contravariant-struct-1.rs:10:5
- |
-LL | fn foo<'min,'max>(v: SomeStruct<&'max ()>)
- | ---- ---- lifetime `'max` defined here
- | |
- | lifetime `'min` defined here
-...
-LL | v
- | ^ function was supposed to return data with lifetime `'max` but it is returning data with lifetime `'min`
- |
- = help: consider adding the following bound: `'min: 'max`
-
-error: aborting due to previous error
-