]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/const-generics/issues/issue-61432.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / const-generics / issues / issue-61432.rs
index 97ab07daccefb94843eac8d33c3ebd3dceca98ad..6192af82afb2849f636fcdd45d77bf0764a8f9c5 100644 (file)
@@ -1,13 +1,6 @@
 // run-pass
-// revisions: full min
-#![cfg_attr(full, feature(const_generics))] //[full]~WARN the feature `const_generics` is incomplete
 
 fn promote<const N: i32>() {
-    // works:
-    //
-    // let n = N;
-    // let _ = &n;
-
     let _ = &N;
 }