]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-move-out-of-static-item.rs
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / borrowck / borrowck-move-out-of-static-item.rs
index 79eb68c95a037b11bb152ae829de474850ac368c..d01fb261894c81844ed66d1fa2d90b0fc4a187ca 100644 (file)
@@ -1,16 +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.
-
-// revisions: ast mir
-//[mir]compile-flags: -Z borrowck=mir
-
 // Ensure that moves out of static items is forbidden
 
 struct Foo {
@@ -25,6 +12,5 @@ fn test(f: Foo) {
 }
 
 fn main() {
-    test(BAR); //[ast]~ ERROR cannot move out of static item [E0507]
-               //[mir]~^ ERROR [E0507]
+    test(BAR); //~ ERROR cannot move out of static item `BAR` [E0507]
 }