mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
22 lines
610 B
Rust
22 lines
610 B
Rust
fn static_id<'a,'b>(t: &'a ()) -> &'static ()
|
|
where 'a: 'static { t }
|
|
//~^ WARN unnecessary lifetime parameter `'a`
|
|
|
|
fn static_id_indirect<'a,'b>(t: &'a ()) -> &'static ()
|
|
where 'a: 'b, 'b: 'static { t }
|
|
//~^ WARN unnecessary lifetime parameter `'b`
|
|
|
|
fn static_id_wrong_way<'a>(t: &'a ()) -> &'static () where 'static: 'a {
|
|
t
|
|
//~^ ERROR lifetime may not live long enough
|
|
}
|
|
|
|
fn error(u: &(), v: &()) {
|
|
static_id(&u);
|
|
//~^ ERROR borrowed data escapes outside of function [E0521]
|
|
static_id_indirect(&v);
|
|
//~^ ERROR borrowed data escapes outside of function [E0521]
|
|
}
|
|
|
|
fn main() {}
|