rust/src/test/run-fail/test-should-panic-bad-message.rs
2018-12-25 21:08:33 -07:00

9 lines
159 B
Rust

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