]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/moves/moves-based-on-type-match-bindings.rs
Auto merge of #75912 - scottmcm:manuallydrop-vs-forget, r=Mark-Simulacrum
[rust.git] / src / test / ui / moves / moves-based-on-type-match-bindings.rs
index 1fd3d03570a69d789002cc64c4d782c28c950a03..75fc6085f0aaaf3e168a7decdf1f99f7cbc604bf 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.
-
 // Tests that bindings to move-by-default values trigger moves of the
 // discriminant. Also tests that the compiler explains the move in
 // terms of the binding, not the discriminant.
@@ -23,9 +13,9 @@ fn f10() {
         Foo {f} => {}
     };
 
-    touch(&x); //~ ERROR use of partially moved value: `x`
-    //~^ value used here after move
-    //~| move occurs because `x.f` has type `std::string::String`
+    touch(&x); //~ ERROR borrow of partially moved value: `x`
+    //~^ value borrowed here after partial move
+    //~| partial move occurs because `x.f` has type `std::string::String`
 }
 
 fn main() {}