about summary refs log tree commit diff
path: root/tests/ui/consts/const-block-const-bound.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-01-15 09:21:51 +0100
committerRalf Jung <post@ralfj.de>2025-01-15 09:21:51 +0100
commit620feadb38165877836400d6a6451437e46ab42f (patch)
tree98feb953ceb5d28d85b882cb0d92cc545b333127 /tests/ui/consts/const-block-const-bound.rs
parent93ba568ab98f1492a96945ef646eeb898128b2ef (diff)
downloadrust-620feadb38165877836400d6a6451437e46ab42f.tar.gz
rust-620feadb38165877836400d6a6451437e46ab42f.zip
remove some known-bug that do not seem to make sense
Diffstat (limited to 'tests/ui/consts/const-block-const-bound.rs')
-rw-r--r--tests/ui/consts/const-block-const-bound.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/ui/consts/const-block-const-bound.rs b/tests/ui/consts/const-block-const-bound.rs
index 596aac09b31..b4b89a93e75 100644
--- a/tests/ui/consts/const-block-const-bound.rs
+++ b/tests/ui/consts/const-block-const-bound.rs
@@ -1,5 +1,3 @@
-//@ known-bug: #103507
-
 #![allow(unused)]
 #![feature(const_trait_impl, negative_impls, const_destruct)]
 
@@ -16,6 +14,6 @@ impl Drop for UnconstDrop {
 fn main() {
     const {
         f(UnconstDrop);
-        //FIXME ~^ ERROR can't drop
+        //~^ ERROR trait bound `UnconstDrop: const Destruct` is not satisfied
     }
 }