rust/src/test/ui/lub-match.nll.stderr

21 lines
684 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unsatisfied lifetime constraints
2018-08-14 15:26:33 -05:00
--> $DIR/lub-match.rs:40:13
2018-08-08 07:28:26 -05:00
|
LL | pub fn opt_str2<'a>(maybestr: &'a Option<String>) -> &'static str {
| -- lifetime `'a` defined here
2018-08-14 15:26:33 -05:00
...
LL | s //~ ERROR E0312
| ^ returning this value requires that `'a` must outlive `'static`
2018-08-08 07:28:26 -05:00
error: unsatisfied lifetime constraints
2018-08-14 15:26:33 -05:00
--> $DIR/lub-match.rs:49:13
2018-08-08 07:28:26 -05:00
|
LL | pub fn opt_str3<'a>(maybestr: &'a Option<String>) -> &'static str {
| -- lifetime `'a` defined here
2018-08-14 15:26:33 -05:00
...
LL | s //~ ERROR E0312
| ^ returning this value requires that `'a` must outlive `'static`
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors