]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/dst/dst-rvalue.rs
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / dst / dst-rvalue.rs
index 69bda8c1671e7ccc4f0b4e147ce58e5ac5f239f2..aa028396be4addd688e8d8803afe4b2fad8ead75 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.
-
 // Check that dynamically sized rvalues are forbidden
 
 #![feature(box_syntax)]
 pub fn main() {
     let _x: Box<str> = box *"hello world";
     //~^ ERROR E0161
-    //~^^ ERROR cannot move out of borrowed content
+    //~^^ ERROR cannot move out of a shared reference
 
     let array: &[isize] = &[1, 2, 3];
     let _x: Box<[isize]> = box *array;
     //~^ ERROR E0161
-    //~^^ ERROR cannot move out of borrowed content
+    //~^^ ERROR cannot move out of type `[isize]`, a non-copy slice
 }