mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
267 B
Rust
15 lines
267 B
Rust
struct Foo<'a, 'b: 'a>(&'a &'b ());
|
|
|
|
impl<'a, 'b> Foo<'a, 'b> {
|
|
fn xmute(a: &'b ()) -> &'a () {
|
|
unreachable!()
|
|
}
|
|
}
|
|
|
|
pub fn foo<'a, 'b>(u: &'b ()) -> &'a () {
|
|
Foo::<'a, 'b>::xmute(u)
|
|
//~^ ERROR lifetime may not live long enough
|
|
}
|
|
|
|
fn main() {}
|