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
174 B
Rust
Raw Normal View History

//@ run-fail
//@ compile-flags: --test
//@ check-stdout
//@ ignore-emscripten no processes
2020-04-16 01:50:32 -05:00
#[test]
#[should_panic(expected = "foo")]
pub fn test_explicit() {
panic!()
}