#[test] fn changing_lifetime() { let r; { let x = 5; r = make_static(&x); } println!("r: {}", r); assert_eq!(5, *r) }
Other options:
no subject