blob: 549acd23987e93a4cfbfa51dc8678aa98fcac226 [file] [log] [blame] [edit]
thread_local! {
static LOCAL: u64 = panic!();
}
fn main() {
let _ = std::panic::catch_unwind(|| LOCAL.with(|_| {}));
}