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