summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-infer-call-2.rs
blob: a288d2e4d6e01ee735f20879c285dbdab96dd1fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass

fn takes_two(x: &isize, y: &isize) -> isize { *x + *y }

fn with<T, F>(f: F) -> T where F: FnOnce(&isize) -> T {
    f(&20)
}

fn has_one<'a>(x: &'a isize) -> isize {
    with(|y| takes_two(x, y))
}

pub fn main() {
    assert_eq!(has_one(&2), 22);
}