mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
8 lines
211 B
Rust
8 lines
211 B
Rust
#![feature(strict_provenance)]
|
|
#![deny(fuzzy_provenance_casts)]
|
|
|
|
fn main() {
|
|
let dangling = 16_usize as *const u8;
|
|
//~^ ERROR strict provenance disallows casting integer `usize` to pointer `*const u8`
|
|
}
|