rust/tests/crashes/104685.rs
2024-04-19 23:09:37 +02:00

16 lines
239 B
Rust

//@ known-bug: #104685
//@ compile-flags: -Zextra-const-ub-checks
#![feature(extern_types)]
extern {
pub type ExternType;
}
extern "C" {
pub static EXTERN: ExternType;
}
pub static EMPTY: () = unsafe { &EXTERN; };
fn main() {}