mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
16 lines
639 B
Text
16 lines
639 B
Text
error[E0621]: explicit lifetime required in the type of `s`
|
|
--> $DIR/regions-glb-free-free.rs:15:13
|
|
|
|
|
LL | pub fn set_desc(self, s: &str) -> Flag<'a> {
|
|
| ---- help: add explicit lifetime `'a` to the type of `s`: `&'a str`
|
|
LL | / Flag {
|
|
LL | | name: self.name,
|
|
LL | | desc: s,
|
|
LL | | max_count: self.max_count,
|
|
LL | | value: self.value
|
|
LL | | }
|
|
| |_____________^ lifetime `'a` required
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0621`.
|