summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/lub-match.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/lub-match.stderr')
-rw-r--r--src/test/ui/nll/lub-match.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/nll/lub-match.stderr b/src/test/ui/nll/lub-match.stderr
new file mode 100644
index 000000000..208ec07a1
--- /dev/null
+++ b/src/test/ui/nll/lub-match.stderr
@@ -0,0 +1,20 @@
+error: lifetime may not live long enough
+ --> $DIR/lub-match.rs:30:13
+ |
+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-match.rs:40:13
+ |
+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
+