mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 12:39:53 +00:00
7 lines
132 B
Rust
7 lines
132 B
Rust
const extern "C" fn ptr_cast(val: *const u8) {
|
|
val as usize;
|
|
//~^ ERROR pointers cannot be cast to integers
|
|
}
|
|
|
|
fn main() {}
|