]> git.lizzy.rs Git - rust.git/commitdiff
Add tests.
authorLuqman Aden <me@luqman.ca>
Fri, 22 Aug 2014 17:16:26 +0000 (10:16 -0700)
committerLuqman Aden <me@luqman.ca>
Sat, 23 Aug 2014 08:03:34 +0000 (01:03 -0700)
src/test/compile-fail/cannot-mutate-captured-non-mut-var.rs
src/test/run-pass/issue-16671.rs [new file with mode: 0644]

index 6bc436d3c18cee9aca1b998c5941d99f15ca4c48..fcb09c200000b046abe62affbb9511ca54c7fe30 100644 (file)
@@ -12,4 +12,8 @@ fn main() {
     let x = 1i;
     proc() { x = 2; };
     //~^ ERROR: cannot assign to immutable captured outer variable in a proc `x`
+
+    let s = std::io::stdin();
+    proc() { s.lines(); };
+    //~^ ERROR: cannot borrow immutable captured outer variable in a proc `s` as mutable
 }
diff --git a/src/test/run-pass/issue-16671.rs b/src/test/run-pass/issue-16671.rs
new file mode 100644 (file)
index 0000000..a0d3844
--- /dev/null
@@ -0,0 +1,24 @@
+// Copyright 2014 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.
+
+#![forbid(warnings)]
+
+// Pretty printing tests complain about `use std::predule::*`
+#![allow(unused_imports)]
+
+// A var moved into a proc, that has a mutable loan path should
+// not trigger a misleading unused_mut warning.
+
+pub fn main() {
+    let mut stdin = std::io::stdin();
+    spawn(proc() {
+        let _ = stdin.lines();
+    });
+}