summary refs log tree commit diff
path: root/src/test/ui/issues/issue-29723.rs
blob: 41db52a1fadac137f7095578f78da41aa7951355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(nll)]

// test for https://github.com/rust-lang/rust/issues/29723

fn main() {
    let s = String::new();
    let _s = match 0 {
        0 if { drop(s); false } => String::from("oops"),
        _ => {
            // This should trigger an error,
            // s could have been moved from.
            s
            //~^ ERROR use of moved value: `s`
        }
    };
}