rust/src/test/run-fail/test-should-panic-bad-message.rs

10 lines
159 B
Rust
Raw Normal View History

// compile-flags: --test
// error-pattern:panicked at 'bar'
// check-stdout
#[test]
#[should_panic(expected = "foo")]
pub fn test_bar() {
panic!("bar")
}