rust/src/test/run-fail/panic-macro-any.rs
2018-12-25 21:08:33 -07:00

7 lines
132 B
Rust

// error-pattern:panicked at 'Box<Any>'
#![feature(box_syntax)]
fn main() {
panic!(box 413 as Box<::std::any::Any + Send>);
}