about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2018-01-18 21:24:35 +0530
committerManish Goregaokar <manishsmail@gmail.com>2018-01-19 12:28:38 +0530
commit101f1e1193624c8a6dc050d294e7ccbd49609bb0 (patch)
tree88dccb4623692e93a8e6bd634e195c6a99056637 /src
parent0f9c784751434c70ddd6719ccda6817c819126f9 (diff)
downloadrust-101f1e1193624c8a6dc050d294e7ccbd49609bb0.tar.gz
rust-101f1e1193624c8a6dc050d294e7ccbd49609bb0.zip
Add regression test for #29723
fixes #29723
Diffstat (limited to 'src')
-rw-r--r--src/test/ui/issue-29723.rs25
-rw-r--r--src/test/ui/issue-29723.stderr13
2 files changed, 38 insertions, 0 deletions
diff --git a/src/test/ui/issue-29723.rs b/src/test/ui/issue-29723.rs
new file mode 100644
index 00000000000..9f36486e813
--- /dev/null
+++ b/src/test/ui/issue-29723.rs
@@ -0,0 +1,25 @@
+// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+#![feature(nll)]
+
+// test for https://github.com/rust-lang/rust/issues/29723
+
+fn foo() {
+    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
+        }
+    };
+}
diff --git a/src/test/ui/issue-29723.stderr b/src/test/ui/issue-29723.stderr
new file mode 100644
index 00000000000..061c3d49323
--- /dev/null
+++ b/src/test/ui/issue-29723.stderr
@@ -0,0 +1,13 @@
+error[E0382]: use of moved value: `s`
+  --> $DIR/issue-29723.rs:22:13
+   |
+18 |         0 if { drop(s); false } => String::from("oops"),
+   |                     - value moved here
+...
+22 |             s
+   |             ^ value used here after move
+   |
+   = note: move occurs because `s` has type `std::string::String`, which does not implement the `Copy` trait
+
+error: aborting due to previous error
+