]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-fail/mir_trans_calls_diverging_drops.rs
Auto merge of #35856 - phimuemue:master, r=brson
[rust.git] / src / test / run-fail / mir_trans_calls_diverging_drops.rs
index cbe8793cceb22b0f0e34c37682f14ae67dd6f1a8..c191870492969628b96bcc86bf39c1254b6bbdd1 100644 (file)
@@ -8,9 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(rustc_attrs)]
-
-// ignore-msvc: FIXME(#30941)
 // error-pattern:diverging_fn called
 // error-pattern:0 dropped
 
@@ -27,7 +24,6 @@ fn diverging_fn() -> ! {
     panic!("diverging_fn called")
 }
 
-#[rustc_mir]
 fn mir(d: Droppable) {
     diverging_fn();
 }