summary refs log tree commit diff
path: root/src/test/run-fail/test-panic.rs
blob: 92f5146b710f2c2f76c176cab66ccf392360f933 (plain)
1
2
3
4
5
6
7
8
9
// check-stdout
// error-pattern:thread 'test_foo' panicked at
// compile-flags: --test
// ignore-emscripten

#[test]
fn test_foo() {
    panic!()
}