blob: 83519c4524a62145d06105023039b43f2666727c [file] [log] [blame]
// run-pass
// needs-unwind
// compile-flags: --test
#[test]
#[should_panic(expected = "foo")]
pub fn test_foo() {
panic!("foo bar")
}
#[test]
#[should_panic(expected = "foo")]
pub fn test_foo_dynamic() {
panic!("{} bar", "foo")
}