]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/lub-if.stderr
Auto merge of #105145 - Ayush1325:sequential-remote-server, r=Mark-Simulacrum
[rust.git] / src / test / ui / nll / lub-if.stderr
1 error: lifetime may not live long enough
2   --> $DIR/lub-if.rs:28:9
3    |
4 LL | pub fn opt_str2<'a>(maybestr: &'a Option<String>) -> &'static str {
5    |                 -- lifetime `'a` defined here
6 ...
7 LL |         s
8    |         ^ returning this value requires that `'a` must outlive `'static`
9
10 error: lifetime may not live long enough
11   --> $DIR/lub-if.rs:36:9
12    |
13 LL | pub fn opt_str3<'a>(maybestr: &'a Option<String>) -> &'static str {
14    |                 -- lifetime `'a` defined here
15 ...
16 LL |         s
17    |         ^ returning this value requires that `'a` must outlive `'static`
18
19 error: aborting due to 2 previous errors
20