about summary refs log tree commit diff
path: root/src/test/ui/const-generics/const-param-in-async.rs
diff options
context:
space:
mode:
authorBastian Kauschke <bastian_kauschke@hotmail.de>2020-11-17 11:44:21 +0100
committerBastian Kauschke <bastian_kauschke@hotmail.de>2020-12-26 18:24:10 +0100
commitc4ba60a191bccd2f2568572efb76e0e37e88dd21 (patch)
tree78fd9e211d1d9143b0d306ad2339a0c30d5e7c63 /src/test/ui/const-generics/const-param-in-async.rs
parent18fa7789cdeced758cb4e4db22061c31b4dbad80 (diff)
downloadrust-c4ba60a191bccd2f2568572efb76e0e37e88dd21.tar.gz
rust-c4ba60a191bccd2f2568572efb76e0e37e88dd21.zip
update tests
Diffstat (limited to 'src/test/ui/const-generics/const-param-in-async.rs')
-rw-r--r--src/test/ui/const-generics/const-param-in-async.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/ui/const-generics/const-param-in-async.rs b/src/test/ui/const-generics/const-param-in-async.rs
index e8601985287..9dc9c80241d 100644
--- a/src/test/ui/const-generics/const-param-in-async.rs
+++ b/src/test/ui/const-generics/const-param-in-async.rs
@@ -3,7 +3,6 @@
 // revisions: full min
 #![cfg_attr(full, feature(const_generics))]
 #![cfg_attr(full, allow(incomplete_features))]
-#![cfg_attr(min, feature(min_const_generics))]
 
 async fn foo<const N: usize>(arg: [u8; N]) -> usize { arg.len() }