mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 21:47:36 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
17 lines
184 B
Rust
17 lines
184 B
Rust
//@ run-pass
|
|
|
|
|
|
use std::mem::transmute;
|
|
|
|
mod a {
|
|
extern "C" {
|
|
pub fn free(x: *const u8);
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
unsafe {
|
|
a::free(transmute(0_usize));
|
|
}
|
|
}
|