mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 14:47:48 +00:00
11 lines
156 B
Rust
11 lines
156 B
Rust
//@ run-fail
|
|
//@ check-stdout
|
|
//@ compile-flags: --test
|
|
//@ needs-unwind
|
|
|
|
#[test]
|
|
#[should_panic(expected = "foobar")]
|
|
fn test_foo() {
|
|
panic!("blah")
|
|
}
|