Extends lifetime of reference to same as lifetime of value by shortening entire program lifetime
```Rust let mut a = 2i32; // The lifetime of value itself(not reference) is 'static refextended!(&mut a); // Extends lifetime of reference to lifetime of value ('static)
// This compiles identity::<&'static i32>(a);
// Process abort if function containing this extended reference try to return or panic ```