Files
rust/tests/ui/panics/test-should-panic-no-message.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
160 B
Rust
Raw Normal View History

2020-04-16 15:50:32 +09:00
//@ run-fail
//@ compile-flags: --test
//@ check-stdout
//@ needs-subprocess
2020-04-16 15:50:32 +09:00
#[test]
#[should_panic(expected = "foo")]
pub fn test_explicit() {
panic!()
}