mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-30 10:23:09 +00:00
8 lines
157 B
Rust
8 lines
157 B
Rust
// stderr-per-bitwidth
|
|
use std::mem;
|
|
|
|
static FOO: bool = unsafe { mem::transmute(3u8) };
|
|
//~^ ERROR it is undefined behavior to use this value
|
|
|
|
fn main() {}
|