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 043f1215ea5722e53e6bda070e78125e7b84a67f..0000000000000000000000000000000000000000 --- 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 or the MIT license -// , 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 { - value: T, - next: Option>>, -} - -fn to_refs(list: &mut List) -> 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 f1511875a95e2d1fd1272677d96d87f9704ce01c..96b7362e4d93942b791f7e0550d3c1d96a3dde13 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. //