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

19 lines
609 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0597]: `x` does not live long enough
--> $DIR/issue-30438-c.rs:19:6
|
LL | &x
| ^ borrowed value does not live long enough
LL | //~^ ERROR: `x` does not live long enough
LL | }
| - borrowed value only lives until here
|
note: borrowed value must be valid for the lifetime 'y as defined on the function body at 17:10...
--> $DIR/issue-30438-c.rs:17:10
|
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`.