about summary refs log tree commit diff
path: root/src/test/ui/const-generics/const-fn-with-const-param.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/const-fn-with-const-param.rs')
-rw-r--r--src/test/ui/const-generics/const-fn-with-const-param.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test/ui/const-generics/const-fn-with-const-param.rs b/src/test/ui/const-generics/const-fn-with-const-param.rs
index 5c1ee4e0d5a..161bfaab48a 100644
--- a/src/test/ui/const-generics/const-fn-with-const-param.rs
+++ b/src/test/ui/const-generics/const-fn-with-const-param.rs
@@ -1,9 +1,5 @@
 // Checks that `const fn` with const params can be used.
 // run-pass
-// revisions: full min
-
-#![cfg_attr(full, feature(const_generics))]
-#![cfg_attr(full, allow(incomplete_features))]
 
 const fn const_u32_identity<const X: u32>() -> u32 {
     X