]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/nll/match-guards-partially-borrow.rs
New upstream version 1.38.0+dfsg1
[rustc.git] / src / test / ui / nll / match-guards-partially-borrow.rs
index 6e158713146f15a0e1521dae7eda854e39945e4a..601c46ff86cc7766554e44fcbb0e3499e11a1364 100644 (file)
@@ -5,9 +5,7 @@
 // Test that we don't allow mutating the value being matched on in a way that
 // changes which patterns it matches, until we have chosen an arm.
 
-
 #![feature(bind_by_move_pattern_guards)]
-#![feature(nll)]
 
 fn ok_mutation_in_guard(mut q: i32) {
     match q {