summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/lub-if.stderr
blob: 03f7f92046888245513f4d9505729384794f3cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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