blob: 9158a4ac7a74c48b3f1d2c6efe5636dd7a7c3dfd [file] [log] [blame]
error[E0597]: `a` does not live long enough
--> $DIR/regions-addr-of-arg.rs:15:31
|
LL | let _p: &'static isize = &a; //~ ERROR `a` does not live long enough
| ^ borrowed value does not live long enough
LL | }
| - borrowed value only lives until here
|
= note: borrowed value must be valid for the static lifetime...
error[E0597]: `a` does not live long enough
--> $DIR/regions-addr-of-arg.rs:23:6
|
LL | &a //~ ERROR `a` does not live long enough
| ^ borrowed value does not live long enough
LL | }
| - borrowed value only lives until here
|
note: borrowed value must be valid for the lifetime 'a as defined on the function body at 22:8...
--> $DIR/regions-addr-of-arg.rs:22:8
|
LL | fn zed<'a>(a: isize) -> &'a isize {
| ^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0597`.