about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2023-05-23 18:17:09 +0200
committerlcnr <rust@lcnr.de>2023-05-30 12:40:35 +0200
commit2a4467da9f82a8d7be9b8c9f575a64b9a2df5961 (patch)
tree8493e5580486af15886e1f9fbf3d309386b46b6c /tests
parentaa13288e22d11a08c165804c659a4eca2820ab9e (diff)
downloadrust-2a4467da9f82a8d7be9b8c9f575a64b9a2df5961.tar.gz
rust-2a4467da9f82a8d7be9b8c9f575a64b9a2df5961.zip
add FIXME to a test which seems wrong.
Diffstat (limited to 'tests')
-rw-r--r--tests/ui/type-alias-impl-trait/coherence_generalization.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/ui/type-alias-impl-trait/coherence_generalization.rs b/tests/ui/type-alias-impl-trait/coherence_generalization.rs
index 5c9ad9498b6..679b2b0f188 100644
--- a/tests/ui/type-alias-impl-trait/coherence_generalization.rs
+++ b/tests/ui/type-alias-impl-trait/coherence_generalization.rs
@@ -1,5 +1,7 @@
 // check-pass
 
+// FIXME(type_alias_impl_trait): What does this test? This needs a comment
+// explaining what we're worried about here.
 #![feature(type_alias_impl_trait)]
 trait Trait {}
 type Opaque<T> = impl Sized;