mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 21:24:34 +00:00
11 lines
160 B
Rust
11 lines
160 B
Rust
//@ run-fail
|
|
//@ compile-flags: --test
|
|
//@ check-stdout
|
|
//@ needs-subprocess
|
|
|
|
#[test]
|
|
#[should_panic(expected = "foo")]
|
|
pub fn test_explicit() {
|
|
panic!()
|
|
}
|