summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/lub-if.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/nll/lub-if.stderr')
-rw-r--r--tests/ui/nll/lub-if.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/nll/lub-if.stderr b/tests/ui/nll/lub-if.stderr
new file mode 100644
index 000000000..03f7f9204
--- /dev/null
+++ b/tests/ui/nll/lub-if.stderr
@@ -0,0 +1,20 @@
+error: lifetime may not live long enough
+ --> $DIR/lub-if.rs:28:9
+ |
+LL | pub fn opt_str2<'a>(maybestr: &'a Option<String>) -> &'static str {
+ | -- lifetime `'a` defined here
+...
+LL | s
+ | ^ returning this value requires that `'a` must outlive `'static`
+
+error: lifetime may not live long enough
+ --> $DIR/lub-if.rs:36:9
+ |
+LL | pub fn opt_str3<'a>(maybestr: &'a Option<String>) -> &'static str {
+ | -- lifetime `'a` defined here
+...
+LL | s
+ | ^ returning this value requires that `'a` must outlive `'static`
+
+error: aborting due to 2 previous errors
+