mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
7 lines
162 B
Rust
7 lines
162 B
Rust
fn static_to_a_to_static_through_ref_in_tuple<'a>(x: &'a u32) -> &'static u32 {
|
|
let (ref y, _z): (&'a u32, u32) = (&22, 44);
|
|
*y //~ ERROR
|
|
}
|
|
|
|
fn main() {}
|