about summary refs log tree commit diff
path: root/tests/ui/consts/const-fn-nested.rs
blob: d0edb51cb6aca30afb64efb0d384699d6a83a648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ run-pass
// Test a call whose argument is the result of another call.

const fn sub(x: u32, y: u32) -> u32 {
    x - y
}

const X: u32 = sub(sub(88, 44), 22);

fn main() {
    assert_eq!(X, 22);
}