Files
rust/tests/ui/issues/issue-4735.rs
许杰友 Jieyou Xu (Joe) 95ff642797 tests: remove //@ pretty-expanded usages
Done with

```bash
sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs
```

and

```
sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs
```
2024-11-26 02:50:48 +08:00

19 lines
371 B
Rust

//@ run-pass
use std::mem::transmute;
struct NonCopyable(*const u8);
impl Drop for NonCopyable {
fn drop(&mut self) {
let NonCopyable(p) = *self;
let _v = unsafe { transmute::<*const u8, Box<isize>>(p) };
}
}
pub fn main() {
let t = Box::new(0);
let p = unsafe { transmute::<Box<isize>, *const u8>(t) };
let _z = NonCopyable(p);
}