about summary refs log tree commit diff
path: root/tests/ui/panics/test-should-fail-bad-message.rs
blob: 1fb2da9055bd188e1c0117e46fc5ef1b0ebc2f4e (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-fail
//@ check-stdout
//@ compile-flags: --test
//@ needs-unwind

#[test]
#[should_panic(expected = "foobar")]
fn test_foo() {
    panic!("blah")
}