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

11 lines
160 B
Rust
Raw Normal View History

//@ 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!()
}