10 lines
180 B
Rust
10 lines
180 B
Rust
// run-fail
|
|
// error-pattern:panicked at 'Box<Any>'
|
|
// ignore-emscripten no processes
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
fn main() {
|
|
panic!(box 413 as Box<dyn std::any::Any + Send>);
|
|
}
|