]> 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 58cada5d31ea026a9080016bcc2e87792e1c12c2..b0d01b3d98d511a09f2afad1804ded362f417e7f 100644 (file)
@@ -1,15 +1,16 @@
 #![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;
         }
     };