blob: ce91022f093d4461749b58f3316cc31b18c6949a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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`
}
};
}
|