os-rust/src/test/run-fail/test-panic.rs

10 lines
149 B
Rust
Raw Normal View History

// check-stdout
// error-pattern:thread 'test_foo' panicked at
// compile-flags: --test
2016-09-08 01:58:00 +00:00
// ignore-emscripten
#[test]
fn test_foo() {
panic!()
}