]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/rfc-2005-default-binding-mode/general.rs
Stabilize match_default_bindings
[rust.git] / src / test / run-pass / rfc-2005-default-binding-mode / general.rs
index 779a38bdb16720ef190af42db0d83697d976a0f8..df28046d7d70bc089b8d583bdc44ff62944a4822 100644 (file)
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(match_default_bindings)]
-
 fn some_or_wildcard(r: &Option<i32>, b: &i32) {
     let _: &i32 = match r {
         Some(a) => a,