]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/const-generics/const-argument-non-static-lifetime.rs
Rollup merge of #75485 - RalfJung:pin, r=nagisa
[rust.git] / src / test / ui / const-generics / const-argument-non-static-lifetime.rs
index bc09ba2ab553bbec5fb1cfbef12a853c9a22344a..dc34621b90500f16365402a274cc6cf04a09e924 100644 (file)
@@ -1,7 +1,9 @@
 // run-pass
+// revisions: full
+// FIXME(#75323) Omitted min revision for now due to ICE.
 
-#![feature(const_generics)]
-//~^ WARN the feature `const_generics` is incomplete
+#![cfg_attr(full, feature(const_generics))]
+#![cfg_attr(full, allow(incomplete_features))]
 #![allow(dead_code)]
 
 fn test<const N: usize>() {}