mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 00:03:49 +00:00
16 lines
288 B
Rust
16 lines
288 B
Rust
//! Tests moving an `Arc` value out of an `Option` in a match expression.
|
|
|
|
//@ run-pass
|
|
|
|
use std::sync::Arc;
|
|
fn dispose(_x: Arc<bool>) { }
|
|
|
|
pub fn main() {
|
|
let p = Arc::new(true);
|
|
let x = Some(p);
|
|
match x {
|
|
Some(z) => { dispose(z); },
|
|
None => panic!()
|
|
}
|
|
}
|