about summary refs log tree commit diff
path: root/tests/ui/pattern/pattern-match-arc-move.rs
blob: bc79401e4e37a39c0159d05e9e877cc9e50cf513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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!()
    }
}