2021-05-17 00:29:54 +02:00
|
|
|
// revisions: mir thir
|
|
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
|
|
|
2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {
|
2018-10-03 12:34:10 +02:00
|
|
|
pub static symbol: u32;
|
2014-12-22 21:20:31 -08:00
|
|
|
}
|
2018-10-03 12:34:10 +02:00
|
|
|
static CRASH: u32 = symbol;
|
2019-08-03 19:34:21 +02:00
|
|
|
//~^ ERROR use of extern static is unsafe and requires
|
2014-12-22 21:20:31 -08:00
|
|
|
|
|
|
|
fn main() {}
|