diff options
| author | Ralf Jung <post@ralfj.de> | 2025-01-15 09:21:51 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2025-01-15 09:21:51 +0100 |
| commit | 620feadb38165877836400d6a6451437e46ab42f (patch) | |
| tree | 98feb953ceb5d28d85b882cb0d92cc545b333127 /tests/ui/consts/const-block-const-bound.rs | |
| parent | 93ba568ab98f1492a96945ef646eeb898128b2ef (diff) | |
| download | rust-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.rs | 4 |
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 } } |
