2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
fn takes_two(x: &isize, y: &isize) -> isize { *x + *y }
|
2012-07-19 12:10:22 -05:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
fn has_two<'a,'b>(x: &'a isize, y: &'b isize) -> isize {
|
2012-07-19 12:10:22 -05:00
|
|
|
takes_two(x, y)
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(has_two(&20, &2), 22);
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|