rust/tests/ui/panics/test-should-panic-no-messag...

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

11 lines
170 B
Rust
Raw Normal View History

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