]> 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 104c0886311d0bda3cea464539a338336fdb6288..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
@@ -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."),