diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/variance/variance-use-covariant-struct-1.stderr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/variance/variance-use-covariant-struct-1.stderr b/src/test/ui/variance/variance-use-covariant-struct-1.stderr new file mode 100644 index 000000000..bab858c5a --- /dev/null +++ b/src/test/ui/variance/variance-use-covariant-struct-1.stderr @@ -0,0 +1,15 @@ +error: lifetime may not live long enough + --> $DIR/variance-use-covariant-struct-1.rs:10:5 + | +LL | fn foo<'min,'max>(v: SomeStruct<&'min ()>) + | ---- ---- 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 + |