2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2014-11-15 18:10:22 -06:00
|
|
|
// A basic test of using a higher-ranked trait bound.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-11-15 18:10:22 -06:00
|
|
|
trait FnLike<A,R> {
|
|
|
|
fn call(&self, arg: A) -> R;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Identity;
|
|
|
|
|
|
|
|
impl<'a, T> FnLike<&'a T, &'a T> for Identity {
|
|
|
|
fn call(&self, arg: &'a T) -> &'a T {
|
|
|
|
arg
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call_repeatedly<F>(f: F)
|
2015-03-25 19:06:52 -05:00
|
|
|
where F : for<'a> FnLike<&'a isize, &'a isize>
|
2014-11-15 18:10:22 -06:00
|
|
|
{
|
|
|
|
let x = 3;
|
|
|
|
let y = f.call(&x);
|
|
|
|
assert_eq!(3, *y);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
call_repeatedly(Identity);
|
|
|
|
}
|