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

10 lines
136 B
Rust
Raw Normal View History

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