about summary refs log tree commit diff
path: root/tests/ui/consts/const_in_pattern/issue-44333.rs
blob: 8a70aae1d5096677d5c22ebd7eea5fe1e57492fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
type Func = fn(usize, usize) -> usize;

fn foo(a: usize, b: usize) -> usize { a + b }
fn bar(a: usize, b: usize) -> usize { a * b }
fn test(x: usize) -> Func {
    if x % 2 == 0 { foo }
    else { bar }
}

const FOO: Func = foo;
const BAR: Func = bar;

fn main() {
    match test(std::env::consts::ARCH.len()) {
        FOO => println!("foo"), //~ ERROR behave unpredictably
        BAR => println!("bar"), //~ ERROR behave unpredictably
        _ => unreachable!(),
    }
}