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