```rust
    let _ref: &Square = unsafe {
        // This is a compile error as it cannot copy the value
        &VARIABLE_2  
    };
```

The comment here isn't true