summary refs log tree commit diff
path: root/src/test/run-fail/test-should-panic-no-message.rs
blob: b18389ec7440e479e77f055a643a3f5675f578bc (plain)
1
2
3
4
5
6
7
8
9
// compile-flags: --test

// error-pattern:panicked at 'explicit panic'
// check-stdout
#[test]
#[should_panic(expected = "foo")]
pub fn test_explicit() {
    panic!()
}