Extends lifetime of reference to same as lifetime of value by shortening entire program lifetime
```Rust let mut a = 2_i32; // The lifetime of value itself(not reference) is 'static
// Safely extend lifetimes and abort after expression finish ref_extended!(|&a| { identity::<&'static i32>(a); // This compiles });
// Unreachable. Process abort ```