summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/polonius/subset-relations.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/polonius/subset-relations.stderr')
-rw-r--r--src/test/ui/nll/polonius/subset-relations.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/nll/polonius/subset-relations.stderr b/src/test/ui/nll/polonius/subset-relations.stderr
new file mode 100644
index 000000000..6df5563ea
--- /dev/null
+++ b/src/test/ui/nll/polonius/subset-relations.stderr
@@ -0,0 +1,14 @@
+error: lifetime may not live long enough
+ --> $DIR/subset-relations.rs:10:5
+ |
+LL | fn missing_subset<'a, 'b>(x: &'a u32, y: &'b u32) -> &'a u32 {
+ | -- -- lifetime `'b` defined here
+ | |
+ | lifetime `'a` defined here
+LL | y
+ | ^ function was supposed to return data with lifetime `'a` but it is returning data with lifetime `'b`
+ |
+ = help: consider adding the following bound: `'b: 'a`
+
+error: aborting due to previous error
+