From 8f6e0a6a4b03c212c0434de417a274d50b7ab0e5 Mon Sep 17 00:00:00 2001 From: Camille GILLOT Date: Sat, 26 Oct 2024 17:50:28 +0000 Subject: [PATCH] Promote test. --- .../return-type-notation/impl-trait-in-trait.rs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/{crashes/131648.rs => ui/associated-type-bounds/return-type-notation/impl-trait-in-trait.rs} (84%) diff --git a/tests/crashes/131648.rs b/tests/ui/associated-type-bounds/return-type-notation/impl-trait-in-trait.rs similarity index 84% rename from tests/crashes/131648.rs rename to tests/ui/associated-type-bounds/return-type-notation/impl-trait-in-trait.rs index 68046ce2a1f..982a757a1e9 100644 --- a/tests/crashes/131648.rs +++ b/tests/ui/associated-type-bounds/return-type-notation/impl-trait-in-trait.rs @@ -1,7 +1,7 @@ -//@ known-bug: #131648 #![feature(return_type_notation)] trait IntFactory { fn stream(self) -> impl IntFactory; } + fn main() {}