]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-overloaded-index-move-from-vec.rs
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / borrowck / borrowck-overloaded-index-move-from-vec.rs
index df72c2b0af72a7396c10fe5b77be11402730748c..ddc210f9aa2332dd2321ccb93988ab6775486249 100644 (file)
@@ -1,13 +1,3 @@
-// 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.
-
 #![feature(box_syntax)]
 
 use std::ops::Index;
@@ -28,5 +18,5 @@ fn main() {
     let v = MyVec::<Box<_>> { data: vec![box 1, box 2, box 3] };
     let good = &v[0]; // Shouldn't fail here
     let bad = v[0];
-    //~^ ERROR cannot move out of indexed content
+    //~^ ERROR cannot move out of index of `MyVec<std::boxed::Box<i32>>`
 }