rust/src/test/ui/nll/closure-requirements/region-lbr-anon-does-not-outlive-static.stderr

12 lines
421 B
Plaintext
Raw Normal View History

error[E0621]: explicit lifetime required in the type of `x`
--> $DIR/region-lbr-anon-does-not-outlive-static.rs:19:5
|
2018-02-22 18:42:32 -06:00
LL | fn foo(x: &u32) -> &'static u32 {
2018-08-06 12:56:24 -05:00
| ---- help: add explicit lifetime `ReStatic` to the type of `x`: `&ReStatic u32`
2018-02-22 18:42:32 -06:00
LL | &*x
| ^^^ lifetime `ReStatic` required
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0621`.