about summary refs log tree commit diff
path: root/src/test/ui/const-generics/defaults/wrong-order.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/defaults/wrong-order.rs')
-rw-r--r--src/test/ui/const-generics/defaults/wrong-order.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/ui/const-generics/defaults/wrong-order.rs b/src/test/ui/const-generics/defaults/wrong-order.rs
index cb36d456f38..4f1c05011b0 100644
--- a/src/test/ui/const-generics/defaults/wrong-order.rs
+++ b/src/test/ui/const-generics/defaults/wrong-order.rs
@@ -1,6 +1,5 @@
 // revisions: full min
 #![cfg_attr(full, feature(const_generics))] //[full]~WARN the feature `const_generics` is incomplete
-#![cfg_attr(min, feature(min_const_generics))]
 
 struct A<T = u32, const N: usize> {
     //~^ ERROR type parameters with a default must be trailing