about summary refs log tree commit diff
path: root/src/test/ui/impl-trait/explicit-generic-args-with-impl-trait/not-enough-args.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/impl-trait/explicit-generic-args-with-impl-trait/not-enough-args.rs')
-rw-r--r--src/test/ui/impl-trait/explicit-generic-args-with-impl-trait/not-enough-args.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/ui/impl-trait/explicit-generic-args-with-impl-trait/not-enough-args.rs b/src/test/ui/impl-trait/explicit-generic-args-with-impl-trait/not-enough-args.rs
index ffb0582fe8d..7249a36f5fe 100644
--- a/src/test/ui/impl-trait/explicit-generic-args-with-impl-trait/not-enough-args.rs
+++ b/src/test/ui/impl-trait/explicit-generic-args-with-impl-trait/not-enough-args.rs
@@ -1,5 +1,3 @@
-#![feature(explicit_generic_args_with_impl_trait)]
-
 fn f<T: ?Sized, U: ?Sized>(_: impl AsRef<T>, _: impl AsRef<U>) {}
 
 fn main() {