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

9 lines
149 B
Rust

// check-stdout
// error-pattern:thread 'test_foo' panicked at
// compile-flags: --test
// ignore-emscripten
#[test]
fn test_foo() {
panic!()
}