]> git.proxmox.com Git - rustc.git/blobdiff - src/test/run-pass/exhaustive-bool-match-sanity.rs
New upstream version 1.13.0+dfsg1
[rustc.git] / src / test / run-pass / exhaustive-bool-match-sanity.rs
index d88a5f12e303dd17ce017b1accfe197f7437080b..27bcab43229c52ade34099809fdd634f1d698917 100644 (file)
@@ -15,9 +15,6 @@
 // sanity in that we generate an if-else chain giving the correct
 // results.
 
-#![feature(rustc_attrs)]
-
-#[rustc_mir]
 fn foo(x: bool, y: bool) -> u32 {
     match (x, y) {
         (false, _) => 0,