]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/exhaustive-bool-match-sanity.rs
Changed issue number to 36105
[rust.git] / src / test / run-pass / exhaustive-bool-match-sanity.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Issue #33540
12 // We previously used to generate a 3-armed boolean `SwitchInt` in the
13 // MIR of the function `foo` below. #33583 changed rustc to
14 // generate an `If` terminator instead. This test is to just ensure
15 // sanity in that we generate an if-else chain giving the correct
16 // results.
17
18 #![feature(rustc_attrs)]
19
20 #[rustc_mir]
21 fn foo(x: bool, y: bool) -> u32 {
22     match (x, y) {
23         (false, _) => 0,
24         (_, false) => 1,
25         (true, true) => 2
26     }
27 }
28
29 fn main() {
30     assert_eq!(foo(false, true), 0);
31     assert_eq!(foo(false, false), 0);
32     assert_eq!(foo(true, false), 1);
33     assert_eq!(foo(true, true), 2);
34 }