]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-49824.rs
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-49824.rs
index 1f3e575288427ed8b53fc963a75e1676b8951399..b0d01b3d98d511a09f2afad1804ded362f417e7f 100644 (file)
@@ -1,25 +1,16 @@
-// Copyright 2018 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.
-
 #![feature(rustc_attrs)]
 
-// This test checks that a failure occurs with NLL but does not fail with the
-// legacy AST output. Check issue-49824.nll.stderr for expected compilation error
-// output under NLL and #49824 for more information.
+// This test checks that a warning occurs with migrate mode.
 
 #[rustc_error]
 fn main() {
-    //~^ compilation successful
+    //~^ ERROR compilation successful
     let mut x = 0;
     || {
         || {
+        //~^ WARNING captured variable cannot escape `FnMut` closure body
+        //~| WARNING this error has been downgraded to a warning
+        //~| WARNING this warning will become a hard error in the future
             let _y = &mut x;
         }
     };