]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lub-match.stderr
Rollup merge of #87440 - twetzel59:fix-barrier-no-op, r=yaahc
[rust.git] / src / test / ui / lub-match.stderr
1 error[E0312]: lifetime of reference outlives lifetime of borrowed content...
2   --> $DIR/lub-match.rs:30:13
3    |
4 LL |             s
5    |             ^
6    |
7    = note: ...the reference is valid for the static lifetime...
8 note: ...but the borrowed content is only valid for the lifetime `'a` as defined here
9   --> $DIR/lub-match.rs:25:17
10    |
11 LL | pub fn opt_str2<'a>(maybestr: &'a Option<String>) -> &'static str {
12    |                 ^^
13
14 error[E0312]: lifetime of reference outlives lifetime of borrowed content...
15   --> $DIR/lub-match.rs:39:13
16    |
17 LL |             s
18    |             ^
19    |
20    = note: ...the reference is valid for the static lifetime...
21 note: ...but the borrowed content is only valid for the lifetime `'a` as defined here
22   --> $DIR/lub-match.rs:35:17
23    |
24 LL | pub fn opt_str3<'a>(maybestr: &'a Option<String>) -> &'static str {
25    |                 ^^
26
27 error: aborting due to 2 previous errors
28
29 For more information about this error, try `rustc --explain E0312`.