Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-fail
//@ error-pattern:panicked
//@ error-pattern:Box<dyn Any>
//@ ignore-emscripten no processes
#![allow(non_fmt_panics)]
fn main() {
panic!(Box::new(612_i64));
}