mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-02 14:07:10 +00:00
6 lines
119 B
Rust
6 lines
119 B
Rust
//@ check-pass
|
|
|
|
const FOO: &str = unsafe { &*(1_usize as *const [u8; 0] as *const [u8] as *const str) };
|
|
|
|
fn main() {}
|