mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
16 lines
282 B
Rust
16 lines
282 B
Rust
|
// test for #87707
|
||
|
// edition:2018
|
||
|
// run-fail
|
||
|
// check-run-results
|
||
|
|
||
|
use std::sync::Once;
|
||
|
use std::panic;
|
||
|
|
||
|
fn main() {
|
||
|
let o = Once::new();
|
||
|
let _ = panic::catch_unwind(|| {
|
||
|
o.call_once(|| panic!("Here Once instance is poisoned."));
|
||
|
});
|
||
|
o.call_once(|| {});
|
||
|
}
|