]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-feature-nll-overrides-migrate.rs
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / borrowck / borrowck-feature-nll-overrides-migrate.rs
index 72043938f53511f0e441e6c2b8bd6e1045d376a3..a6f3905bebd53c908243c4a596a8a87a0fd2be6b 100644 (file)
@@ -1,13 +1,3 @@
-// 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.
-
 // This is a test that the `#![feature(nll)]` opt-in overrides the
 // migration mode. The intention here is to emulate the goal behavior
 // that `--edition 2018` effects on borrowck (modeled here by `-Z
@@ -20,7 +10,7 @@
 
 // revisions: zflag edition
 // [zflag]compile-flags: -Z borrowck=migrate
-// [edition]compile-flags: --edition 2018
+// [edition]edition:2018
 
 #![feature(nll)]
 
@@ -30,8 +20,8 @@ fn main() {
         ref mut foo
             if {
                 (|| { let bar = foo; bar.take() })();
-                //[zflag]~^ ERROR cannot move out of borrowed content [E0507]
-                //[edition]~^^ ERROR cannot move out of borrowed content [E0507]
+                //[zflag]~^ ERROR cannot move out of `foo` in pattern guard [E0507]
+                //[edition]~^^ ERROR cannot move out of `foo` in pattern guard [E0507]
                 false
             } => {},
         Some(ref _s) => println!("Note this arm is bogus; the `Some` became `None` in the guard."),