rust/src/test/ui/issues/issue-29723.rs
2018-12-25 21:08:33 -07:00

17 lines
382 B
Rust

#![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`
}
};
}