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