about summary refs log tree commit diff
path: root/src/test/ui/impl-trait/generic-with-implicit-hrtb-without-dyn.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/impl-trait/generic-with-implicit-hrtb-without-dyn.rs')
-rw-r--r--src/test/ui/impl-trait/generic-with-implicit-hrtb-without-dyn.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/impl-trait/generic-with-implicit-hrtb-without-dyn.rs b/src/test/ui/impl-trait/generic-with-implicit-hrtb-without-dyn.rs
deleted file mode 100644
index bed81c4bca7..00000000000
--- a/src/test/ui/impl-trait/generic-with-implicit-hrtb-without-dyn.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// revisions: edition2015 edition2021
-//[edition2021]edition:2021
-
-#![allow(warnings)]
-
-fn ice() -> impl AsRef<Fn(&())> {
-    //[edition2015]~^ ERROR: the trait bound `(): AsRef<(dyn for<'a> Fn(&'a ()) + 'static)>` is not satisfied [E0277]
-    //[edition2021]~^^ ERROR: trait objects must include the `dyn` keyword [E0782]
-    todo!()
-}
-
-fn main() {}