mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 14:47:48 +00:00
11 lines
170 B
Rust
11 lines
170 B
Rust
//@ run-fail
|
|
//@ compile-flags: --test
|
|
//@ check-stdout
|
|
//@ ignore-wasm32 no processes
|
|
|
|
#[test]
|
|
#[should_panic(expected = "foo")]
|
|
pub fn test_explicit() {
|
|
panic!()
|
|
}
|