about summary refs log tree commit diff
path: root/tests/ui/panics/test-should-panic-no-message.rs
blob: 05fc927d876b578a607eeeb6e9ed6cf87d3f10e8 (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-fail
//@ compile-flags: --test
//@ check-stdout
//@ needs-subprocess

#[test]
#[should_panic(expected = "foo")]
pub fn test_explicit() {
    panic!()
}