Closed SUPERCILEX closed 5 months ago
Running thread::spawn(|| panic!("wat")); is enough to cause a whole program abort which is unfortunate.
thread::spawn(|| panic!("wat"));
Cranelift doesn't yet support unwinding, so any panic will always abort.
Ohhhh, ok that makes sense. Thanks!
Running
thread::spawn(|| panic!("wat"));
is enough to cause a whole program abort which is unfortunate.