about summary refs log tree commit diff
path: root/tests/ui/consts/const-block-const-bound.rs
diff options
context:
space:
mode:
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, 3 insertions, 1 deletions
diff --git a/tests/ui/consts/const-block-const-bound.rs b/tests/ui/consts/const-block-const-bound.rs
index 3704a1a5a39..123e5cb1b3e 100644
--- a/tests/ui/consts/const-block-const-bound.rs
+++ b/tests/ui/consts/const-block-const-bound.rs
@@ -1,3 +1,5 @@
+// known-bug: #103507
+
 #![allow(unused)]
 #![feature(const_trait_impl, inline_const, negative_impls)]
 
@@ -14,6 +16,6 @@ impl Drop for UnconstDrop {
 fn main() {
     const {
         f(UnconstDrop);
-        //~^ ERROR can't drop
+        //FIXME ~^ ERROR can't drop
     }
 }