rust/src/test/ui/issues/issue-30438-c.stderr

19 lines
560 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0597]: `x` does not live long enough
2018-12-25 09:56:47 -06:00
--> $DIR/issue-30438-c.rs:9:6
2018-07-15 16:11:54 -05:00
|
LL | &x
| ^ borrowed value does not live long enough
2019-03-09 06:03:44 -06:00
LL |
2018-07-15 16:11:54 -05:00
LL | }
| - borrowed value only lives until here
|
2018-12-25 09:56:47 -06:00
note: borrowed value must be valid for the lifetime 'y as defined on the function body at 7:10...
--> $DIR/issue-30438-c.rs:7:10
2018-07-15 16:11:54 -05:00
|
LL | fn silly<'y, 'z>(_s: &'y Test<'z>) -> &'y <Test<'z> as Trait>::Out where 'z: 'static {
| ^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.