]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/nll/relate_tys/impl-fn-ignore-binder-via-bottom.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / nll / relate_tys / impl-fn-ignore-binder-via-bottom.rs
index 37a01f28946d204fa83357f296aef362febd21b3..c4db6fc97dc32468798403b8f7505acb3cac0e44 100644 (file)
@@ -6,15 +6,13 @@
 // contravariance, this effectively requires a `T = &'b ()` where
 // `forall<'a> { 'a: 'b }`. Therefore, we get an error.
 //
-// Note the use of `-Zno-leak-check` and `feature(nll)` here. These
-// are presently required in order to skip the leak-check errors.
+// Note the use of `-Zno-leak-check` here. This is presently required in order
+// to skip the leak-check errors.
 //
 // c.f. Issue #57642.
 //
 // compile-flags:-Zno-leak-check
 
-#![feature(nll)]
-
 trait Y {
     type F;
     fn make_f() -> Self::F;