about summary refs log tree commit diff
diff options
context:
space:
mode:
authorritiek <ritiekmalhotra123@gmail.com>2018-01-23 22:45:10 +0530
committerritiek <ritiekmalhotra123@gmail.com>2018-01-23 22:45:10 +0530
commit06d123d4be25d8c9f24e562f8e6c0c21c549a423 (patch)
treefaf2bbf14739945dc422740d2826b4042afa26af
parentdbb65199378b394a42180edd4cab88bc914b1385 (diff)
downloadrust-06d123d4be25d8c9f24e562f8e6c0c21c549a423.tar.gz
rust-06d123d4be25d8c9f24e562f8e6c0c21c549a423.zip
Remove similar test that does not run the result
-rw-r--r--src/test/run-pass/borrowck/borrowck-nll-iterating-and-updating.rs34
-rw-r--r--src/test/run-pass/nll/mutating_references.rs2
2 files changed, 1 insertions, 35 deletions
diff --git a/src/test/run-pass/borrowck/borrowck-nll-iterating-and-updating.rs b/src/test/run-pass/borrowck/borrowck-nll-iterating-and-updating.rs
deleted file mode 100644
index 043f1215ea5..00000000000
--- a/src/test/run-pass/borrowck/borrowck-nll-iterating-and-updating.rs
+++ /dev/null
@@ -1,34 +0,0 @@
-// 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.
-
-// compile-flags: -Z borrowck=mir -Z nll
-
-// This example comes from the NLL RFC.
-
-struct List<T> {
-    value: T,
-    next: Option<Box<List<T>>>,
-}
-
-fn to_refs<T>(list: &mut List<T>) -> Vec<&mut T> {
-    let mut list = list;
-    let mut result = vec![];
-    loop {
-        result.push(&mut list.value);
-        if let Some(n) = list.next.as_mut() {
-            list = n;
-        } else {
-            return result;
-        }
-    }
-}
-
-fn main() {
-}
diff --git a/src/test/run-pass/nll/mutating_references.rs b/src/test/run-pass/nll/mutating_references.rs
index f1511875a95..96b7362e4d9 100644
--- a/src/test/run-pass/nll/mutating_references.rs
+++ b/src/test/run-pass/nll/mutating_references.rs
@@ -1,4 +1,4 @@
-// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //