about summary refs log tree commit diff
path: root/tests/ui/cenum_impl_drop_cast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/cenum_impl_drop_cast.rs')
-rw-r--r--tests/ui/cenum_impl_drop_cast.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/ui/cenum_impl_drop_cast.rs b/tests/ui/cenum_impl_drop_cast.rs
index 96e3d967e2c..f681434dd86 100644
--- a/tests/ui/cenum_impl_drop_cast.rs
+++ b/tests/ui/cenum_impl_drop_cast.rs
@@ -1,5 +1,3 @@
-#![deny(cenum_impl_drop_cast)]
-
 enum E {
     A = 0,
 }
@@ -14,5 +12,4 @@ fn main() {
     let e = E::A;
     let i = e as u32;
     //~^ ERROR cannot cast enum `E` into integer `u32` because it implements `Drop`
-    //~| WARN this was previously accepted
 }