rust/tests/ui/panics/test-should-panic-no-message.rs
2024-02-16 20:02:50 +00:00

11 lines
174 B
Rust

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